:root {

    /* Primary Colors */
    --green-500: hsl(158, 36%, 37%);
    --green-700: hsl(158, 42%, 18%);

    /* Neutral Colors */
    --black: hsl(212, 21%, 14%);
    --grey: hsl(228, 12%, 48%);
    --cream: hsl(30, 38%, 92%);
    --white: hsl(0, 0%, 100%);


    /* Font */
    --font-primary: "Fraunces", serif;
    --font-secondary: "Montserrat", sans-serif;

    /* Font Weights */
    --font-weight-500: 500;
    --font-weight-700: 700;
}

*, ::before, ::after{
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
}

/* Element-level global Styles */

body{
    background-color: var(--cream);
    min-height: 100vh;
    display: grid;
    place-items: center;
}

h1{
    font-family: var(--font-primary);
    color: var(--black);
}

/* Global Styles */
.wrapper{
    width: min(93%, 38rem);
    background-color: var(--white);

    font-family: var(--font-secondary);
    color: var(--grey);
}

.row .card__image{
    padding-inline: 0 ;
}

.content__tag{
    letter-spacing: 7px;
}

.content__text{
    line-height: 1.6;
}

.price__new{
    font-family: var(--font-primary);
    font-size: 1.75rem;
    color: var(--green-500);
}

.price__old, .content__tag,
.btn-primary, .content__text{ 
    font-size: 0.875rem;
}

.btn-primary{
    background-color: var(--green-500);
    border: 1px solid var(--green-500);
}

.btn-primary:hover{
    background-color: var(--green-700);
    border: 1px solid var(--green-700);
}

/* Utility Styles */
