@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


body{
    display: flex;
    justify-content: center;
    /* align-items: center; */
    height: 100vh;
    background-color: hsl(30, 38%, 92%);
}

.container{
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background-color: white;
    margin: 5%;
    overflow: hidden;
}
.perfumetitle{
    font-family: 'Playfair Display';
    /* font-family: "Montserrat",'gill sans'; */
}
.price{
    font-family: 'Montserrat';
    font-size: 30px;
    font-weight: bolder;
    color: hsl(158, 42%, 18%);
}
.pricecontainer{
    display: flex;
    align-items: center;
    gap:20px;
    margin: 20px 0;
}
.cartbutton{
    font-family: 'Montserrat';
    background-color: hsl(158, 36%, 37%);
    color: white;
    padding: 20px;
    font-size: 20px;
    text-align: center;
    border-radius: 10px;
}

/* Mobile Screen  */
@media screen and (max-width: 830px){
    .desktopimg{
        display: none;
    }
    .mobileimg{
        max-width: 100%;
    }
    .product-info{
        padding: 20px;
    }
    .perfumetitle{
        margin: 8px 0;
    }
    .desc1{
        margin: 8px 0;
        font-family: 'Playfair Display';
        font-size: 40px;
        font-weight: 700;
    }
    .desc2{
        font-family: 'Montserrat';
        font-size: 15px;
        color: grey;
    }
}

/* Desktop Screen  */

@media screen and (min-width: 830px){
    .mobileimg{
        display: none;
    }
    .container{
        display: flex;
        flex-direction: row;
        width: 55vw;
    }
    .desktopimg{
        max-width: 50%;
    }
    .product-info{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        max-width: 50%;
        padding: 0  25px;
    }
    .desc1{
        font-size: 50px;
        font-weight: 600;
        margin: 0;
    }
    .desc2{
        font-family: 'Montserrat';
        font-size: 20px;
        color: grey;
        margin: 0;
    }

}