.jewelryStore_first_section {
 position: relative;
 display: flex;
 font-family: 'irsans', sans-serif;
 height: 650px;
 background-image: url('/images/first_section/background.jpg');
 background-repeat: no-repeat;
 background-size: cover;
 background-position: center;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 padding-top: 50px;
}

.jewelryStore_first_section .transClick {
 transform: scale(1);
 -webkit-filter: brightness(1);
         filter: brightness(1);
 transition: transform 0.2s ease, -webkit-filter 0.2s ease;
 transition: filter 0.2s ease, transform 0.2s ease;
 transition: filter 0.2s ease, transform 0.2s ease, -webkit-filter 0.2s ease;
}
.jewelryStore_first_section .transClick:hover {
 transform: scale(1.1);
 -webkit-filter: brightness(0.9);
         filter: brightness(0.9);
}
.jewelryStore_first_section .transClick:active {
 transform: scale(0.9);
}

.jewelryStore_first_section > div {
 position: absolute;
 display: none;
 width: 100%;
 height: 100%;
 top: 0;
 left: 0;
 background-color: rgba(0, 0, 0, 0.48);

 @media screen and (max-width: 650px) {
     display: block;
 }
}

.jewelryStore_first_section > h1 {
 position: relative;
 font-size: 70px;
 color: #F5F5F5;
 text-align: center;
 top: 6%;

 @media screen and (max-width: 950px) {
     font-size: 7.4vw;
 }

 @media screen and (max-width: 650px) {
     font-size: 48px;
     top: 0;
     padding: 0 20px;
 }
}

.jewelryStore_first_section > button {
 position: absolute;
 font-size: 16px;
 color: #000000;
 border: none;
 outline: none;
 background-color: var(--secondary_color);
 bottom: 30px;
 left: 20px;
 padding: 13px 30px;
 border-radius: 10px;
 font-weight: bold;
}