* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --Green-500: hsl(158, 36%, 37%);
    --Green-700: hsl(158, 42%, 18%);

    --Black: hsl(212, 21%, 14%);
    --Grey: hsl(228, 12%, 48%);
    --Cream: hsl(30, 38%, 92%);
    --White: hsl(0, 0%, 100%);
}

body {
    background-color: var(--Cream);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    display: flex;
    width: 40rem;
    background-color: var(--White);
    border-radius: 0.5rem;
    overflow: hidden;
}

.image {
    width: 50%;
}

.second-column {
    display: grid;
    margin-top: 3rem;
    margin-left: 2.5rem;
    width: 35%;
}

.perfume {
    font-family: "Montserrat", sans-serif;
    color: var(--Grey);
    letter-spacing: 0.4rem;
    font-size: clamp(0.1rem, 2.5vw, 0.7rem);
    font-weight: 500;
}

.header {
    font-family: "Fraunces", serif;
    font-size: clamp(1rem, 2.5vw, 2rem);
    font-weight: bold;
}

.paragraph {
    line-height: 1.5rem;
    font-family: "Montserrat", sans-serif;
    color: var(--Grey);
    font-size: clamp(0.5rem, 2.5vw, 0.85rem);
    font-weight: 500;

}

.container-price {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    height: 30%;
}

.price {
    font-family: "Fraunces", serif;
    color: var(--Green-500);
    font-size: clamp(1rem, 2.5vw, 2rem);
    font-weight: bold;
}

.og-price {
    font-family: "Montserrat", sans-serif;
    color: var(--Grey);
    font-size: clamp(0.5rem, 2.5vw, 0.85rem);
    text-decoration: line-through;
}

.div-box {
    display: flex;
    justify-self: center;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    column-gap: 5%;
    width: 100%;
    height: 70%;
    margin-bottom: 1.4rem;
    border-radius: 0.5rem;
    background-color: var(--Green-500);
    color: var(--White);
    font-weight: bold;
    font-size: clamp(0.5rem, 2.5vw, 0.8rem);
}

.div-box:hover {
    background-color: var(--Green-700);
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .container {
        display: block;
        width: 60%;
    }

    .image {
        width: 100%;
        height: 13rem;
        size: 10%;
    }

    .second-column {
        margin-top: 1rem;
        width: 70%;
        row-gap: 1rem;
    }
}