html, body {
    height: 100%;
    margin: 0;
    box-sizing: content-box;
}

body {
    font-size: 1rem;
    background-color: #FBEFE1;
    font-family: "obviously-narrow", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

#main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#logo {
    width: 16em;
}

h1 {
    font-size: 2rem;
    margin: 0;
    color: #6653a3;
}


@media (prefers-color-scheme: dark) and (forced-colors: active) {
    h1 {
        color: #ffffff;
    }
}
