/* CSS Document */

@font-face {
    font-family: "Aldrich";
    src: url("Aldrich-Regular.ttf");
}

/* Light mode */
@media (prefers-color-scheme: light) {
    body {
        background-color: white;
        color: black;
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: white;
    }
}
	
body {
	padding: 25px;
	font-family: "Aldrich";
}

a {
	color: #0080ff;
}

nav ul li {
	padding: 0.5em;
}

.floating-container {
    display: flex; /* add */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center; /* add to align horizontal */
    align-items: center; /* add to align vertical */
	flex-direction: column;
}

.corner-nav {
    display: flex; /* add */
    position: absolute;
    top: 0;
    bottom: 1;
    left: 0;
    right: 1;
	flex-direction: column;
}
