body {
    margin: 0;
    font-family: Georgia, serif;
    padding: 20px;
    color: #fff;
    background-color: #042a15;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

body a {
    color: #fff;
    text-decoration: none;
}

body ul {
    text-align: left;
}

body a:hover {
    text-decoration: underline;
}

body.home .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

:where(.main, footer) {
    text-align: center;
    max-width: 900px;
}

footer {
    border-top: 2px solid #fff;
    width: 100%;
    padding: 20px 0 0 0;
    margin-block-start: 20px;
}

img.logo {
    width: 400px;
    max-width: 100%;
    height: auto;
    display: block;
}

.text-content {
    max-width: 600px;
}

@media (max-width: 900px) {
    .main,
    .text-content {
        max-width: 100%;
        hyphens: auto;
        word-break: break-word;
    }
}