@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  box-sizing: border-box;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  text-align: center;
  color: #555;
}

*:before,
*:after {
  box-sizing: border-box;
}

/*
 .geometric_container {
  color: black;
}

.input-container {
  position: static;
  top: 100px;
  color: black;
}

input[type="number"] {
  position: static;
}

.number-input {
  position: static;
  top: 100px;
  color: black;
} */

.navigation {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid white;
  border-left: none;
  box-shadow: 2px 2px 3px whitesmoke;
  position: absolute;
  top: 40px;
  bottom: 0;
  left: -100%;
  /* overflow: hidden; */
  transition: left 0.3s;
  width: 22%;
  z-index: 1010;
}

h4,
h4 a {
  color: #fff;
  width: 100%;
  text-align: center;
  z-index: 101;
}

h4 a {
  display: block;
  font-size: 14px;
  padding: 1px;
  margin-top: 15px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

h4 a:hover {
  background: rgba(255, 255, 255, 0.2);
}

#settings {
  color: orangered;
}

hr {
  border: 1px double black;
  height: 5px;
  color: #e07800;
  /* old IE */
  background-color: #e07800;
  /* Modern Browsers */
}

#menu {
  font-family: 'Orbitron', 'Arial', 'Poppins', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
}

.toggle-button {
  display: block;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 4000;
}

.toggle-button .wolverine {
  display: inline-block;
  height: 26px;
  padding: 0px 0px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0.97;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.toggle-button .wolverine span {
  display: inline-block;
  text-transform: uppercase;
  line-height: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-left: 0px;
  width: 0px;
  overflow: hidden;
}

.toggle-button .wolverine .claws {
  position: relative;
  top: 58px;
  right: 4%;
  width: 25px;
  height: 5px;
  background: black;
  display: inline-block;
}

.toggle-button .wolverine .claws:before,
.toggle-button .wolverine .claws:after {
  display: block;
  content: '';
  height: 5px;
  width: 26px;
  background: black;
  position: absolute;
  z-index: -1;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s 0.2s, -webkit-transform 0.2s ease;
  -webkit-transition-delay: ease, 0s;
  transition-delay: all 0.1s 0.2s, -webkit-transform 0.2s ease;

  -moz-transition: all 0.1s 0.2s ease, -moz-transform 0.2s ease;
  -o-transition: all 0.1s 0.2s ease, -o-transform 0.2s ease;
  transition: all 0.1s 0.2s ease, transform 0.2s ease;
}

.toggle-button .wolverine .claws:before {
  top: 8px;
}

.toggle-button .wolverine .claws:after {
  top: -8px;
}

.nav-control {
  position: absolute;
  width: 100%;
  clip: rect(0, 0, 0, 0);
}

.nav-control:checked~.navigation {
  left: 0;
  opacity: 1;
  transition: left 0.3s, opacity 0.3s;
}

.nav-control:checked~.navigation ul li {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.nav-control:checked~.toggle-button .wolverine .claws {
  -webkit-transition: all 0.1s 0s;
  -webkit-transition-delay: ease;
  transition-delay: ease;
  -moz-transition: all 0.1s 0s ease;
  -o-transition: all 0.1s 0s ease;
  transition: all 0.1s 0s ease;
  background: transparent !important;
  z-index: 101;
}

.nav-control:checked~.toggle-button .wolverine .claws:before,
.nav-control:checked~.toggle-button .wolverine .claws:after {
  background: white;
  -webkit-transition: all 0.1s ease, -webkit-transform 0.1s 0.2s;
  -webkit-transition-delay: 0s, ease;
  transition-delay: 0s, ease;
  -moz-transition: all 0.1s ease, -moz-transform 0.1s 0.2s ease;
  -o-transition: all 0.1s ease, -o-transform 0.1s 0.2s ease;
  transition: all 0.1s ease, transform 0.1s 0.2s ease;
  top: 0;
  width: 20px;
}

.nav-control:checked~.toggle-button .wolverine .claws:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}

.nav-control:checked~.toggle-button .wolverine .claws:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}