.Directions {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    background-color: transparent;
    text-align: center;
    width: 100%;
    height: 100%;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ and Edge */
    user-select: none; /* Standard syntax */
}

    
 .Directions h3 {
    position: absolute;
     font-size: 2em;
    margin-top:40vh;
    width: 100%;
    color: rgba(240,255,0,00);
     animation-name: fadeTitle;
     animation-duration: 10s;
     animation-fill-mode: forwards;
     z-index: 150;
     
}

@keyframes fadeTitle{
    0%{color: rgba(240,255,0,00);}
    30%{color: rgba(240,255,0,1.00);}
    100%{color: rgba(240,255,0,00);}
}



/*//////////////////////////////////////////////////////////*/


header{

    grid-row-start: 1 ;
    grid-column-start: 1;
    grid-column-end: -1;
    width:100px;
    position: fixed;
    transition: margin-left .5s;
    z-index: 1850;


}
.container {
  display: inline-block;
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #00C08D;
  margin-top:20px;
  transition: 0.4s;
  border-radius: 2px;
  z-index: 1950;

}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -6px);
}

.menuBox{
    margin:15px;
    width:70px;
    height:70px;
    display:grid;
    grid-template-rows: 10px 10px 10px;
    justify-content: center;
    border-radius: 50px;
    background-color: #111;
    z-index: -4;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
    font-family: sans-serif;
    text-transform: uppercase;
    color:rgba(0,0,0,1.00);
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  transition: margin-left .5s;
  padding: 16px;
}