.close-menu,
.open-menu {
  position: absolute;
  cursor: pointer;
  display: none;
}

.open-menu {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  
}

.close-menu {
  top: 20px;
  right: 20px;
}

#check {
  display: none;
}
.menu {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 99999;
  background-color: #000000;
  color: #fff;
  transition: all 0.5s ease-in-out;
  text-transform: uppercase;
  /* font-size: 24px; */
}

.menu li {
  margin-top: 40px;
}

.menu li a {
  padding: 10px;
}

.close-menu,
.open-menu {
  /* display: block; */
  font-size: 2rem;

  display: flex;
  justify-content: center;
  align-items: center;
gap: 10%;

}
.open-menu>a,.lang-toggle{
  color: white;
  /* margin-left: 10%; */
  font-family:Boogaloo;
  background-color: red;
  padding: 0 10px;
  border-radius: 5px;
  font-size: 1.5rem;
}

#check:checked ~ .menu {
  right: 0;
}

@media (max-width: 1080px) {
  .menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 73%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 100;
    background-color: #000;
    color: #fff;
    transition: all 0.5s ease-in-out;
    text-transform: uppercase;
    /* font-size: 24px; */
  }

  .menu li {
    margin-top: 40px;
  }

  .menu li a {
    padding: 10px;
  }
   
  .open-menu>li{
    display: none;
  }
  .close-menu,
  .open-menu {
    /* display: block; */
    font-size: 1.2rem;


  }

  #check:checked ~ .menu {
    right: 0;
  }
}
