html {
    color-scheme: light dark;
}

body {
    margin: 0;
    font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}

#title {
    margin-top: 0;
    font-size: calc(max(3rem, min(7vh, 10vw)));
}

#logo {
    width: 50vw;
    max-width: 50vh;
    max-height: 30vh;
    object-fit: contain;
    margin: 3rem 0;
    pointer-events: none;
    -webkit-touch-callout: none;
    -moz-touch-callout: none;
}

footer {
    margin-bottom: 0;
}

#more-ul {
    display: inline;
    list-style: none;
    padding: 0;
    margin: 0;
}

#more-ul li {
    display: inline;
}

#here {
    font-weight: bold;
}

@media (prefers-color-scheme: dark) {
    #logo {
        filter: invert(1) hue-rotate(180deg) saturate(10);
    }
}
