* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media(prefers-color-scheme: dark) {
    body {
        color: white;
        background-color: black;
    }

    a {
        color: orangered;
    }
}

@mmedia(prefers-color-scheme: light) {
    body {
        color: black;
        background-color: white;
    }
}

body {
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    user-select: none;
}

main {
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
}

h1 {
    font-weight: 400;
    text-align: center;
    margin: 50px 0px;
    font-style: italic;
    font-size: 1rem;
    padding: 50px;
}

a {
    text-decoration: overline;
}
a:hover {
    text-decoration: underline;
}

main a {
    margin: 10px 0px;
    width: fit-content;
}

#title {
    background-size: contain;
    background-repeat: no-repeat;
}