
#custom-jewelry{
    background-color: var(--primary-color);
    height: 50vh;
}

#custom-jewelry h1{
    text-align: center;
    color: var(--link-color);
    padding: 20px;
}

#custom-jewelry-container{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    height: 100%;
    width: 100%;
}

#custom-jewelry-image{
    width: 100%;
    height: 100%;
    background-image: url("../img/custom\ sign.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: 50%;
}

/* #custom-jewelry-image img{
    width: 100%;
} */

#custom-jewelry-container .button-container{
    position: absolute;
    top: 85%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 150px;
}

#custom-jewelry-container button{
    width: 100%;
}

#custom-jewelry-container button:hover{
    color: var(--primary-color) !important;
}

#custom-jewelry-container .text-container{
    align-items: center;
    background-color: var(--primary-color);
}

.text-container{
    width: 100%;
}

.text-container #custom-jewelry-slogan{
    color: var(--link-color);
    font-size: 3em;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    margin-top: 25%;
    transform: translateY(-50%);
}

/* For mobile versions */
@media (max-width: 570px) {
    .text-container{
        display: none;
    }
}

/* For Desktop Version */
@media (min-width: 1571px){
    #custom-jewelry-image{
        width: 100%;
        height: 100%;
        background-image: url("../img/custom\ sign.webp");
        background-repeat: no-repeat;
        background-size: 50vw;
        background-position-y: 50%;
    }
}