/* Hamburger */
.hamburger1 {
    height: 45px;
    margin: 10px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    justify-items: center;
    z-index: 120;
  }  
  .hamburger1 div {
    background-color:white;
    position: relative;
    width: 40px;
    height: 5px;
    margin-top: 7px;
    transition: all 0.2s ease-in-out;
  }
  
  #toggle1 {
    display: none;
  }
  
  #toggle1:checked + .hamburger1 .top {
    transform: rotate(-45deg);
    margin-top: 22.5px;
  }
  
  #toggle1:checked + .hamburger1 .meat {
    transform: rotate(45deg);
    margin-top: -5px;
  }
  
  #toggle1:checked + .hamburger1 .bottom {
    transform: scale(0);
  }
  
  #toggle1:checked ~ .menu1 {
    height: 340px;
  }
  
  
  /* Menu */
  .menu1 {
    background-image: linear-gradient( rgba(200,200,200,.7),rgba(80,80,80,.7)); 
    display: grid;
    grid-template-rows: 1fr repeat(4, 0.5fr);
    grid-row-gap: 20px;
    padding: 0;
    list-style: none;
    clear: both;
    width: 20%;
    text-align: center;
    height: 0px;
    overflow: hidden;
    z-index: 120;
    margin-left:auto;
    margin-right:auto;
    color:white;
    z-index:120;
  }
  
  .menu1 a:first-child {
    margin-top: 10px;
  }
  
  .menu1 a:last-child {
    margin-bottom: 40px;
  }
  
  .link1 {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    font: 700 20px 'Oswald', sans-serif;
  }
  
  .link1:hover {
    background-color: #fff;
    color: rgb(61, 61, 61);
    transition: all 0.3s ease;
  }
  