* {
  background-color: rgb(30, 114, 187);
  font-family: "Courier New", Courier, monospace;
  background: #6699cc;
}

body {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 4vw;
  margin: 0;
  padding: 0;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.nav {
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.nav a {
  display: inline-block;
  color: black;
  text-align: center;
  padding: 1vw;
  text-decoration: none;
  font-size: 2vh;
  border-radius: 1vw;
}

.nav-right {
  float: right;
}

/* Change the color of links on mouse-over */
.nav a:hover {
  background-color: #71a1d2;
  color: black;
}

/* Add a color to the active/current link */
.nav a.active {
  background-color: #71a1d2;
  color: black;
}

#title{  
  user-select: none;  
} 