#section1nav{
  background-color: rgba(77,2,11,0.3);
  transition: background-color 1s ease;
  -webkit-transition: background-color 1s ease;
}
#section1nav:hover{
  background-color: rgba(77,2,11,0.6);
  transition: background-color 1s ease;
  -webkit-transition: background-color 1s ease;
}
#section1nav li a{
  color: white;
  font-family: EscolarNormal;
  font-size: 24px;
  margin-right: 10px;
}
.nav>li>a:focus{
  background-color: transparent;
  text-decoration: none;
}
.nav>li>a:hover{
  background-color: transparent;
  text-decoration: underline;
}

/********** SPECIIAL QUERIES FOR TOUCH SCREENS **********/
@media(hover: none) and (pointer: coarse) {
    #section1nav{
      background-color: rgba(77,2,11,0.6);
    }
    .nav>li>a:hover {
      text-decoration: none;
    }
}