<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body, #menu {
    display: grid;
    place-items: center;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
}

#menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-family: Calibri, sans-serif;
}

#menu h1 {
    margin-bottom: 0;
    font-size: 3em;
}

#menu p, #menu select {
    margin: 0 0 1.5rem 0;
}

#menu select, #menu input {
    min-width: 50%;
    padding: .5em 2em;
    font-size: 2em;
    text-align: center;
    border: none;
    border-bottom: solid .2em #055;
    background-color: #EEE;
    cursor: pointer;
    outline: none;
}

#menu input:hover {
    text-decoration: underline;
}

#menu a {
    position: fixed;
    bottom: 1em;
    right: 1em;
    text-decoration: none;
}

#menu a:hover {
    text-decoration: underline;
}</pre></body></html>