body {
    background-color: #141414;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Esteban", serif;
    min-height: 100vh;
    margin: 0;
}

.red-header,
a {
    color: #0366d6;
    font-family: "Esteban", serif;
}

a:visited {
    color: #0366d6;
}

img {
    max-width: 100%;
    height: auto;
}

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

ul li {
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    body {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    body {
        max-width: 1200px;
        margin: 0 auto;
    }
}

