*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: "Fraunces", sans-serif;
    font-weight: 700;
    background-color: hsl(30, 38%, 92%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: hsl(0, 0%, 100%);
    max-width: 700px;
    width: 90%;
    display: flex;
    margin: 50px auto;
    border-radius: 20px;
}

.product-image-card {
    width: 50%;
    display: flex;
}

.product-image {
    width: 100%;
    height: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.product-info-card {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.product-tag {
    font-family: "Montserrat", sans-serif;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 500;
    color: hsl(228, 12%, 48%);
}

.product-heading {
    max-width: 200px;
    color: hsl(158, 42%, 18%);
}

.product-discription {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    color: hsl(228, 12%, 48%);
    max-width: 250px;
}

.product-price-container {
    display: flex;
    align-items: baseline;
    gap: 30px;
}

.product-price {
    color: hsl(158, 36%, 37%);
    font-size: 32px;
}

.old-price {
    color: hsl(228, 12%, 48%);
    font-weight: 500;
    text-decoration: line-through;
}

.add-to-cart {
    font-family: "Montserrat", sans-serif;
    display: flex;
    justify-content: center;
    background-color: hsl(158, 36%, 37%);
    color:hsl(0, 0%, 100%) ;
    width: 100%;
    padding: 20px 0px;
    gap: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.add-to-cart:hover, .add-to-cart:active{
    background-color: hsl(158, 42%, 18%);
}

.attribution {
    font-family: "Montserrat", sans-serif;
}


.attribution a:link, .attribution a:visited {
    text-decoration: none;
    color: hsl(158, 36%, 37%);
}

.attribution a:hover, .attribution a:active {
    text-decoration: underline;
    color: hsl(158, 42%, 18%);
}
