* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  color: white;
}
body header {
  width: 100%;
  height: 50px;
  position: fixed;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  top: 0;
  left: 0;
  padding: 10px;
}
body header h2 {
  height: 50px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5;
}
body header button {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: none;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: black;
}
body header button hr {
  width: 100%;
  height: 5px;
  background-color: white;
  border-radius: 10px;
}
body h1 {
  font-size: 1000%;
}

a {
  text-decoration: none;
  color: white;
}

@media screen and (max-width: 600px) {
  body h1 {
    font-size: 700%;
  }
}
.nav {
  width: 100%;
  height: 0;
  background-color: white;
  transition: 0.5s;
  position: fixed;
  overflow: hidden;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav ol {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  font-size: 150%;
}
.nav ol li h3 {
  font-size: 175%;
}

.hamburger {
  cursor: pointer;
  margin-right: 20px;
  position: fixed;
  right: 0px;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 3em;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: 0.5s;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.line.black {
  stroke: #000000;
  /* Change stroke color to black */
  transition: 0.5s;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}/*# sourceMappingURL=style.css.map */