*, *::before, *::after{
    box-sizing: border-box;
}
img{
    width: 100%;
}
body{
    background-color: hsl(30, 38%, 92%);
    font-size: 14px;
}
.card{
    width: 80%;
    margin: 3rem auto 3rem;
    background-color: hsl(0, 0%, 100%);
    border-radius: 1rem;
    padding-bottom: 1.5rem;
    max-width: 400px;
}
.container{
    width: 80%;
    margin: 0 auto;
}
.hero__img{
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    content: url("./images/image-product-mobile.jpg");
    max-width: 100%;
}
.hero__text{
    color: hsl(212, 21%, 14%);
}
.gray{
    color: hsl(228, 12%, 48%);
}
.green{
    color: hsl(158, 36%, 37%);
}
.fancy{
    font-family: 'Fraunces', serif;
    font-weight: 500;
}
.standard{
    font-family: 'Montserrat', sans-serif; 
    font-weight: 500;
}
.standard__heading{
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700;
    letter-spacing: .5rem;
}
.strike{
    text-decoration: line-through;
}
h1.green.fancy{
    padding: 0;
    margin: 0;
}
h4.gray.strike{
    padding: 0;
    margin: 0;

}
.row{
    display: flex;
}
.container.row{
    margin: 0;
    align-items: center;
    justify-content: space-between;
}
h1{
    font-size: 2rem;
}
.add_to_cart{
    background-color: hsl(158, 36%, 37%);
    border: none;
    color: #ffffff;
    border-radius: 1rem;
    width: 100%;
    margin: 1rem auto 0;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    font-family: 'Montserrat', sans-serif; 
}
.cart__icon{
    max-width: 1rem;
    margin-right: 1rem;
}
.add_to_cart:hover{
    cursor: pointer;
    background-color: hsl(159, 42%, 23%)
}
.attribution { 
    font-size: 11px; text-align: center; 
}
.attribution a { 
    color: hsl(228, 45%, 44%); 
}

@media (min-width: 750px){
   .card{
    display: flex;
    padding-bottom: 0;
    padding-right: 1rem;
    max-width: 600px;
   }
   .hero__img{
    border-top-right-radius: 0;
    border-bottom-left-radius: 1rem;
    max-width: 50%;
    margin-right: 2rem;
    content: url("./images/image-product-desktop.jpg");
   }
}