


.menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 30px;
    width: 40px;
    position: relative;
    float: right;
    cursor: pointer;
    z-index: 999;
}
.menu span {
    display: inline-block;
    width: 100%;
    height: 4px;
    background-color: #C7AA74;
    transition: all 0.5s ease;
}
.hamburger-checkbox {
    display: none; 
  }
  
  .hamburger7 span {
    transform-origin: left;
    
  }
  
 
  .hamburger-checkbox:checked + .hamburger7 span:nth-of-type(1) {
    transform: rotate(45deg);
  }
  
  .hamburger-checkbox:checked + .hamburger7 span:nth-of-type(2) {
    width: 0;
  }
  
  .hamburger-checkbox:checked + .hamburger7 span:nth-of-type(3) {
    transform: rotate(-45deg);
  }

  .menu-content {
    position: fixed;
    display: flex;
    top: -300%; 
    left: 0;
    height: 100vh; 
  width: 100vw; 
    background: #F0F0F0; 
    transition: top 0.3s ease;
    overflow-y: scroll;
    z-index: 1;
    text-align: center;
    align-items: center; 
  justify-content: center; 
  }


  img.logo{
    width: 20vw;
  }

 div.grid{
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  width: 90vw;
  margin: 0 auto;
  margin-top: 2vh;
  overflow: hidden;
  

 }

@media screen and (max-width: 420px) {

  .menu-content{
    top: -300%;
  }

 
  
}


  
  
