body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 112px);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    text-align: right;
    color: black;
    font-weight: bold;
    font-size: 3em;
    margin-left: 10px;
    margin-right: 10px;
}

@media (max-width: 374px) {
	a {
	    font-size: 2.5em;
	}
}

a:hover {
    background-color: lightgrey;
}

.nobreak {
    white-space: nowrap;
}

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