html, body {
    height: 100%;
    width: 100%;
}

body{
    background-color: hsl(30, 38%, 92%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* font-family: "Montserrat", serif;
    font-family: "Fraunces", serif; */
}

.white-card{
    background-color: hsl(0, 0%, 100%);
    border-radius: 10px;
    /* margin: auto; */
    width: 650px;
    height: 500px;
    overflow: hidden;

    /* position: absolute;
    top: 0; 
    bottom: 0;
    left: 0;
    right: 0; */
    display: flex;
}

.perfume img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.product-details{
    padding: 30px;
    justify-content: left;
    width: 50%;
    box-sizing: border-box;
}

.product-title{
    font-family: "Montserrat", serif;
    font-weight: 500;
    font-size: 16px;
    color: hsl(228, 12%, 48%);
}

.product-name{
    font-family: "Fraunces", serif;   
    font-weight: 700;
    font-size: 35px;
    color:hsl(212, 21%, 14%);
    padding-top: 20px;
    padding-bottom: 20px;
}

.product-desc{
    font-family: "Montserrat", serif;
    font-weight: 500;
    font-size: 16px;
    color: hsl(228, 12%, 48%);
    line-height: 1.5;
}

.price-container{
    display: flex;
    align-items: center;
    padding-top: 26px;
    padding-bottom: 26px;
}

.price{
    font-family: "Fraunces", serif;   
    font-weight: 700;
    font-size: 35px;
    color:hsl(158, 36%, 37%);
    padding-right: 20px;
}

.old-price{
    font-family: "Montserrat", serif;
    font-weight: 500;
    font-size: 16px;
    color: hsl(228, 12%, 48%);
}

.cart-button{
    background-color: hsl(158, 36%, 37%);
    padding: 20px;
    border-radius: 10px;
    /* align-items:center;
    text-align: center; */
    justify-content: center;
    display: flex;
}

.cart-text{
    padding-left: 10px;
    font-family: "Montserrat", serif;
    font-weight: 700;
    font-size: 16px;
    color: hsl(0, 0%, 100%);
}

.cart-button:hover{
    background-color: rgb(40, 82, 66);
    cursor: pointer;
}

@media screen and (max-width: 600px){
    .white-card{
        display: block;
        width: 70%;
        height: 90%;
    }
    .perfume img{
        object-fit:cover;
        width: 100%;
        height: 300px;
    }
    .product-details{
        width: 100%;
        height: 100%;
    }
  }

.attribution { 
    text-align: center; 
    margin-top: 10px;
}