.hamburguer {
  display: block;
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 5;
}

.toggle {
  width: 40px;
  height: 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
}
.toggle__line {
  width: 90%;
  height: 3px;
  background-color: white;
  transition: all 0.3s;
}
#check {
  visibility: hidden;
}

@media screen and (min-width: 720px) {
  .hamburguer {
    display: none;
  }
}
