body {
    background-color: hsl(30, 38%, 92%);
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}
.container {
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    width: 500px;
    background-color: white;
}
.product-image {
    width: 50%;
    min-height: 100%;
}
.product-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 10px;
}
.product-card {
    width: 50%;
    /*padding: 25px;*/
}
#category {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 4px;
    font-size: 14px;
    color: hsl(228, 12%, 48%);
    font-weight: 500;
    padding-top: 15px;
    padding-left: 25px;

}
h1 {
    font-family: 'Fraunces', serif;
    line-height: 30px;
    color: hsl(212, 21%, 14%);
    padding-left: 25px;
}
.description {
    font-family: 'Monteserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: hsl(228, 12%, 48%);
    padding-right: 20px;
    padding-left: 25px;
}
.price {
    font-family: 'Fraunces', serif;
    color: hsl(158, 36%, 37%);
    display: flex;
    align-items: center;
    padding-left: 25px;
}
.discount-price {
    font-size: 26px;
    font-weight: 700;
    padding-right: 10px;
}
.original-price {
    font-size: 12px;
    text-decoration: line-through;
    padding-left: 10px;
}
button {
    background-color: hsl(158, 36%, 37%);
    width: 200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 10px;
    border-radius: 10px;
    border: solid 1px hsl(158, 36%, 37%);
    margin: 15px 0 15px 0;
}
button img {
    width: 12px;
    height: 12px;
    padding-right: 10px;
}
.add-to-cart {
    padding-left: 25px;
}
#mobile-image {
    display: none;
}
@media (max-width: 600px) {
    .container {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 10px;
        height: 100%;
    }
    .product-image {
        width: 100%;
    }
    .product-card {
        width: 100%;
    }
    h1 {
        padding-right: 25px;
    }
    .description {
        padding-right: 25px;
    }
    button {
        width: 100%;
        font-size: 14px;
    }
    .add-to-cart {
        padding-right: 25px;
    }
    button img {
        width: 16px;
        height: 16px;
    }
    .discount-price {
        font-size: 32px;
    }
    .original-price {
        font-size: 16px;
    }
    #desktop-image {
        display: none;
    }
    #mobile-image {
        display: block;
        border-radius: 10px 10px 0 0;
    }
    body {
        margin-top: 10px;;
        align-content: flex-start;
        align-items: center;
        height: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}
.attribution { 
    font-size: 11px; 
    padding-top: 50px;
}
.attribution a { 
    color: hsl(228, 45%, 44%); 
}