body {
    font-family: "Cormorant", serif;
    background-color: #F5F2EB;
    color: #333;
    font-size: 24px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    letter-spacing: 0.03em;
    font-weight: 300;
}

img {
    max-width: 100%;
}

h2 {
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 0;
    margin-top: 0.5em;
    line-height: 1.2;
}

h3 {
    font-weight: 400;
    font-size: 2rem;
}

p {
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.button {
    display: flex;
    align-items: center;
    padding: 0.625em 1.5em;
    background-color: #E0D6BE;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    transition: background-color 0.3s;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    justify-content: center;
    gap: 0.75rem;
    color: inherit;
    margin-top: 0.25em;
}

.button__icon {
    width: 2.5rem;
}

.button:hover {
    background-color: #D1C9A6;
}

.wrapper {
    max-width: 440px;
    margin: 0 auto;
    padding: 3rem 2rem;
    opacity: 0;
    animation: fadein 1.6s;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

.header {
    text-align: center;
    margin-bottom: 1em;
}

.header h1 {
    margin: 0;
}

.header img {
    width: 250px;
    margin-left: -0.3em;
}

.content {
    grid-row: 2;
}

.content__text {
    max-width: 660px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.image {
    grid-row: 1 / span 2;
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1em;
}

.image img {
    border-radius: 12em;
    width: 360px;
    margin: 0 auto;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.2);
}

.image__caption {
    text-align: center;
    margin-top: 2rem;
}

.image__caption h3 {
    margin: 0;
}

.image__caption p {
    margin-top: 0;
    font-size: 1.3em;
}

@media (min-width: 576px) {
    h2 {
        font-size: 2.25rem;
    }

    .wrapper {
        padding: 3rem;
    }

    .button {
        display: inline-flex;
        width: auto;
    }
}

@media (min-width: 768px) {
    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 2.25rem;
    }

    .wrapper {
        max-width: 1400px;
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        grid-template-rows: 160px auto;
        column-gap: 2.5rem;
        row-gap: 1rem;
        padding: 4rem 3rem;
    }

    .header {
        text-align: left;
    }

    .header img {
        width: 300px;
        margin-left: 0;
    }
}

@media (min-width: 1200px) {
    h2 {
        font-size: 2.75rem;
    }

    .wrapper {
        column-gap: 4rem;
    }
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}