/* General */
/* html {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  height: 100%;
} */

/* body {
  margin: 20px 0;
  overflow: auto;
 
  color: #fff;
} */

a {
  color: #fff;
  text-decoration: none;
}

.p-menu1 {
  height: 100%;
  display: none;
  position: relative;
}

/* Hamburger */
.hamburger1 {
  height: 45px;
  margin: 10px;
  display: -ms-grid;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  /* justify-items: center; */
  justify-items: right;
}

.hamburger1 div {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  width: 40px;
  height: 5px;
  margin-top: 7px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#toggle1 {
  display: none;
}

#toggle1:checked + .hamburger1 .top {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: 22.5px;
}

#toggle1:checked + .hamburger1 .meat {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -5px;
}

#toggle1:checked + .hamburger1 .bottom {
  -webkit-transform: scale(0);
  transform: scale(0);
}

#toggle1:checked ~ .menu1 {
  /* display: block; */
  height: 250px;
}

#toggle1:checked ~ .menu1 .link1 {
  display: block;
}

/* #toggle1:checked ~ .link1 {
  display: block;
} */

/* Menu */
.menu1 {
  background-color: rgb(30, 30, 30);
  list-style: none;
  width: auto;
  text-align: center;
  border-radius: 20px;
  position: absolute;
  right: 0;
  left: 0;
  height: 0px;
  display: flex;
  flex-direction: column;
  z-index: 999;
}

.menu1 a:first-child {
  margin-top: 30px;
}

.link1 {
  width: 100%;
  margin: 0;
  padding: 10px 0;
  font: 700 20px "Oswald", sans-serif;
  display: none;
}
