    @import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@700&family=Montserrat:wght@500;700&display=swap');

    :root {
        --very-dark-blue: hsl(212, 21%, 14%);
        --dark-grayish-blue: hsl(228, 12%, 48%);
        --dark-cyan: hsl(158, 36%, 37%);
        -cream: #f2ebe3;
    }

    .attribution {
        font-size: 13px;
        text-align: center;
        position: absolute;
        bottom: 10px;
    }

    .attribution a {
        color: hsl(228, 45%, 44%);
    }

    /* 
- Mobile: 375px
- Desktop: 1440px 
*/

body {
    display: grid;
    place-items: center;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--cream);
    font-family: Fraunces;
}
.flex {
    display : flex;
}
.flex-col { 
    flex-direction: column;
}
.flex-center{ 
    align-items: center;
    justify-content: center;
}
.flex-between{ 
    align-items: center;
    justify-content: space-between;
}

.card {
    width: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-height: 512px;
    /* height: fit-content; */
}

.cardLeft img{ 
    min-width: 325px;
    
    width: 100%;
    height: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.cardRight {
    width: 50%;
    padding: 15px 45px;
    justify-content: space-around;
}

.cardRight h3 {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: small;
    color: var(--dark-grayish-blue);
    font-family: Montserrat;
    font-weight: 500;
}

.cardRight h1{ 
    margin: 0;
    color: var(--very-dark-blue);
    /* font-size: 40px; */
}
.cardRight p {
    font-family: Montserrat;
    font-size: 14px;
    color: var(--dark-grayish-blue);
}

/* price box */
.priceBox {
    width: 100%;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}
.priceMain { 
    color: var(--dark-cyan);
    font-size: xx-large;
    font-weight: 700;
}
.priceSmall{ 
    color: var(--dark-grayish-blue);
    font-weight: 400 !important;
    text-decoration:line-through;
}
/* right button */
.cardRight .cartBtn { 
    width: 100%;
    gap : 25px;
    background: var(--dark-cyan);
    border-radius: 10px;
    border: none;
    height: 45px;

}
.cardRight .cartBtn p {
    color: white;
    font-weight: 600;
}
