:root {
    --DarkCyan: hsl(158, 36%, 37%);
    --DarkGreenCyan: hsl(156, 42%, 18%);
    --Cream: hsl(30, 38%, 92%);
    --VeryDarkBlue: hsl(212, 21%, 14%);
    --DarkGrayishBlue: hsl(228, 12%, 48%);
    --White: hsl(0, 0%, 100%)
}

*, *::before, *::after {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
}

body {
    height: 100vh;
    padding: 1.5rem 1rem;
    background-color: var(--Cream);
}

img {
    content: url(./images/image-product-mobile.jpg);
    max-width: 100%;
    height: auto;
    border-radius: .625rem .625rem 0 0;
}

h1 {
    font-family: "Fraunces", serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1;
    margin-top: .625rem;
    margin-bottom: 1rem;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-img {
    display: flex;
}

.main-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: var(--White);
    border-radius: 0px 0px .625rem .625rem;
}

.p-1 {
    font-size: .75rem !important;
    letter-spacing: 5px !important;
    text-transform: uppercase;
}

.main-text p {
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--DarkGrayishBlue);
}

.container {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
}

.container p {
    font-size: .875rem;
    font-weight: 500;
    color: var(--DarkGrayishBlue);
}

.container-p-1 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    font-family: "Fraunces", serif;
    color: var(--DarkCyan) !important;
}

.main-btn {
    width: 100%;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .625rem;
    width: 100%;
    height: 3rem;
    font-size: .875rem;
    font-weight: 700;
    text-align: center;
    color: var(--White);
    background-color: var(--DarkCyan);
    border-style: none;
    border-radius: .625rem;
}

.btn:hover, .btn:focus {
    background-color: var(--DarkGreenCyan);
    cursor: pointer;
}

i {
    content: url(./images/icon-cart.svg);
}

@media (min-width: 680px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    img {
        content: url(./images/image-product-desktop.jpg);
        width: 100%;
        height: auto;
        max-width: 18.75rem;
        border-radius: .625rem 0px 0px .625rem;
    }

    h1 {
        margin-bottom: 1.25rem;
    }

    .main {
        display: flex;
        flex-direction: row;
        max-width: 37.5rem;
        max-height: 28.125rem;
    }

    .main-content {
        max-width: 18.75rem;
        padding: 2rem;
        background-color: var(--White);
        border-radius: 0px .625rem .625rem 0px;
        gap: 1.5rem;
    }

    .main-text {
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }

    .container {
        margin-top: 0;
        margin-bottom: 0;
    }

}