/*DESKTOP*/
body{
    background-color: hsl(30, 38%, 92%);
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: row;
}

.card{
    background-color: hsl(0, 0%, 100%);
    border-radius: 10px;
    width: 600px;
    height: 450px;
    color: hsl(228, 12%, 48%);
    display: flex;
}

.product-image{
    width: 600px;
    height: 450px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.information-container{
    padding: 30px;
}

.product-name{
    font-size: 14px;
    letter-spacing: 3px;
    margin: 0;
}

.title{
    font-family: 'Fraunces', serif;
    color: hsl(212, 21%, 14%);
    line-height: 1;
}

.paragraph{
    font-size: 14px;
    line-height: 1.6;
}

.price-container {
    display: flex;
    align-items: center;
}

.price{
    font-family: 'Fraunces', serif;
    color: hsl(158, 36%, 37%);
}

.old-price{
    text-decoration: line-through;
    font-size: 13px;
    margin-left: 20px;
}

.cart-button{
    background-color: hsl(158, 36%, 37%);
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    color: hsl(0, 0%, 100%);
    width: 239px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-button:active{
    background-color: hsl(156, 42%, 18%);
}

.cart-icon{
    margin-right: 10px;
}

.footer{
    display: grid;
    place-items: center;
    background-color: hsl(0, 0%, 25%);
    color: whitesmoke;
    height: 50px;
    font-size: 14px;
}
a{
    color: cadetblue;
}

/*MOBILE*/
@media (max-width: 600px) {

    .card{
        width: 343px;
        height: 633px;
        display: grid;
    }

    .product-image{
        width: 343px;
        height: 240px;
        border-radius: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        content: url("images/image-product-mobile.jpg");
    }

    .information-container{
        padding: 25px;
    }

    .paragraph{
        margin-bottom: 0;
    }

    .cart-button{
        width: 292px;
    }

    .footer{
        font-size: 12px;
    }
}