* {
	box-sizing: border-box
}


body {
background-color: black;
color: lightgrey;
font-size: 2rem;
font-family: 'Helvetica', sans-serif;
line-height: 2.4rem;
letter-spacing: 0.04rem;
}


nav {
font-size: 14px;
line-height: 16px;
position: fixed;
top: 1rem;
left: 1rem;
}

a, a:active, a:focus, a:hover {
color: blue;
}

nav a {
color: white;
text-decoration: none;
}

nav a:hover {
color: white;
text-decoration: underline;
}

nav > a:first-child {
margin-bottom: 0.5rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid white;
width: 100%;
display: block;
}

nav ul, nav ul li {
list-style: none;
padding: 0;
}

nav ul {
padding-left: 1rem;
}


main {
max-width: 728px;
margin: 5rem auto 2rem auto;
}

main h1 {
font-size: 4rem;
line-height: 4rem;
width: 75%;
margin: 0 auto 0 auto;
text-align: center;
}

main ul, main ul li {
# list-style: none;
}

body.index main ul {
list-style: none;
}
body.index main ul li a {
color: white;
text-decoration: none;
}

body.index main ul li a:hover {
text-decoration: underline;
}


