/* MVP.css v1.12 - https://github.com/andybrewer/mvp */

@import url('https://fonts.googleapis.com/css?family=Azeret+Mono');

:root {
    --color-accent: #000;
    --color-bg: #fff;
    --color-link: #555;
    --color-shadow: #f4f4f4;
    --color-table: #118bee;
    --color-text: #555;
    --font-family: 'Azeret Mono', monospace;
    --line-height: 2;
	--background-transparency: 0.85;
	font-size: 1em;
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-accent: #fff;
        --color-bg: #000;
        --color-link: #ccc;
        --color-shadow: #bbbbbb20;
        --color-table: #0097fc;
        --color-text: #aaa;
    }
}

body {
    background: var(--color-bg);
    color: var(--color-text);
	font-family: var(--font-family);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
	width: 100vw;
	height: 100vh;
}

div {
	display: flex;
	align-items: center;
    justify-content: center;
	height: 100%;
	width: 100%;
}

ul {
	list-style: none;
    line-height: var(--line-height);
	text-align: left;
    padding: 0;
	margin: 0;
	font-size: min(6vw, 3rem);
}

/* Links */
a {
    color: var(--color-link);
	transition-property: color;
	transition-duration: 0.3s;
	transition-delay: 0s;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

a:hover {
	color: var(--color-accent);
}
