* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0.5rem;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center; /*I was wondering how to do this, how good!*/
}

nav {
    border: 2px solid black;
    border-radius: 2rem;
    margin: 0 auto 1rem;
    max-width: 600px;
    font-size: 3rem;
    line-height: 7rem;
}

h1 {
    padding: 1rem;
    background: grey;
    border-radius: 2rem 2rem 0 0;
}

ul {
    list-style-type: none;
   
}
li {
    border-top: 1px solid;
    
}

li a {
    display: block;

}

li a, 
li a:visited {
text-decoration: none;
color: black;

}

li a:hover,
li a:focus {
    background: black;
    color: whitesmoke;
    cursor: pointer;
}

body {
    background-color: papayawhip;
}