* {box-sizing: border-box}
body {
  font-family: 'Major Mono Display', monospace;
  background-color: #F56F00;
}

.navbar {
  width: ;
  background-color: #555;
  overflow: auto;
}

.navbar a {
  float: left;
  padding: 12px;
  color: white;
  text-decoration: none;
  font-size: 30px;
  width: 25%; /* Four links of equal widths */
  text-align: center;
}

.navbar a:hover {
  background-color: #000;
}

.navbar a.active {
  background-color: white;
  color: black;
}

.title{
  margin-top: 5%;
  font-size: 5vw;
  color: white;
  filter: drop-shadow(0px 0px 3px  #F56F00);
}

@media screen and (max-width: 800px) {
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: left;
  }
  
  .title{
    font-size: 7vw;
  }

}













