html {
	--accent: green;
	--bg: white;
	--font: black;
}

body {
	color: var(--font);
	background-color: var(--bg);
}

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

body {
    font-family: "Monaco";
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    text-decoration: underline;
    font-weight: 400;
    font-size: 1em;
    margin: 0;
}

ul {
    width: 75%;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    list-style-type: none;
    text-align: left;
}

@media screen and (min-width: 650px) {
    ul {
        width: 600px;
    }
}

li:before {
    content: '- ';
}