html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #71181e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    color: #fccf65;
    font-family: Georgia, serif;
    gap: 40px;
    padding: 40px 20px;
    box-sizing: border-box;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

header img {
    height: 120px;
}

header img:first-child {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.welcome {
    font-style: italic;
    font-size: 32px;
    margin: 0;
}

header h1 {
    font-size: 72px;
    font-weight: bold;
    margin: 0;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

section {
    background-color: #5e8c7f;
    border-radius: 30px;
    padding: 40px 50px;
    width: 90%;
    max-width: 800px;
    text-align: center;
}

section em {
    font-size: 24px;
    font-style: italic;
    display: block;
    margin-bottom: 10px;
}

section h2 {
    font-size: 50px;
    font-weight: bold;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

section p {
    font-size: 18px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p {
    font-style: italic;
    font-size: 18px;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 870px) {
    header {
        flex-direction: column;
    }

    header img:first-child {
        display: none;
    }

    header h1 {
        font-size: 48px;
    }

    .welcome {
        font-size: 24px;
    }

    section {
        padding: 30px 20px;
    }

    section h2 {
        font-size: 25px;
    }

    section em {
        font-size: 18px;
    }

    section p {
        font-size: 14px;
    }
}