html, body{
  text-align: center;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Comfortaa', cursive;
  background: rgb(0,78,181);
background: radial-gradient(circle, rgba(0,78,181,1) 0%, rgba(0,3,92,1) 100%);
}
h1{
  text-align: center;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  margin: 10px;
  max-width: 80vw;
}
ul{
  list-style: none;
}
ul, li{
  padding: 0;
  margin: 0;
}
.container{
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
li{
  display: inline-block;
  padding: .5em 1em;
}
li > a{
  color: #fff;
  text-decoration: none;
  text-transform: lowercase;
}
li > a:hover,
li > a:focus{
  text-decoration: underline;
}