body{
    font-family: 'Roboto', sans-serif;
    background-color: rgb(231, 231, 231);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

header {
    margin: auto;
    width: 80%;
    height: 10%;
    text-align: center;
    background: rgb(255, 255, 255);
}
nav ul {
  list-style: none;
  
  text-align: center;
}
nav li {
  display: inline-block;
}
nav li a {
  text-decoration: none;
  display: block;
  color: rgb(0, 0, 0);
  padding: 0.5em 1.2em;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
nav li a:hover {
  background-color: rgb(210, 255, 255);
}

h1{
    text-align: center;
}

footer{
    margin: auto;
    width: 80%;
    height: 10%;
    text-align: center;
    background: rgb(255, 255, 255);
}