body {
  background-color: #1A1A1A;
  color: white;
}


.hamBurger {
    position: fixed;
    cursor: pointer;
    font-size: 40px;
    display: flex;
    justify-content: right;
    color: white;
    right: 15px;
    top: 25px;
    z-index: 1002;
}

.menu {
    display: none; /* hides menu by default */
  }
  
  .menu.active {
    display: block; /* shows when .active is added */
    background-color: grey;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 450px;
    position: fixed;
    text-align: center;
    font: bolder 20px Arial, sans-serif;
    color: white;
    transition: 10s ease;
    z-index: 1001;
  }
  
  .menu.active a {
    color: aliceblue;
  }
  
  .menu.active a:hover {
    color: black;
  }
  
