@media screen and (max-width: 767px) {
  nav {
    display: block;
    height: 100%;
  }
  nav ul {
    position: fixed;
    background: beige;
    width: 100%;
  }
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: white;
  padding: 10px;
  height: 50px;
  position: fixed;
  top: 0px;
}
nav .github {
  background: black;
  border-radius: 7px;
  height: 39px;
  color: white;
  text-decoration: none;
}
nav .github:hover {
  color: red;
}
nav .main-navLinks .hamburger {
  display: none;
}
nav label a {
  text-decoration: none;
  color: black;
}
nav label span {
  font-weight: bold;
  color: red;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 10px;
  padding-right: 50px;
}
nav ul li a {
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  padding: 5px;
}
nav ul li a.active {
  background: black;
  border-radius: 5px;
  color: red;
}
nav ul li a:hover {
  background: black;
  color: white;
  transition: 5ms;
  border-radius: 5px;
}

.home {
  background: url("/assets/image.jpg");
  background-size: cover;
  display: flex;
  flex-direction: column;
  height: 97vh;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.home .description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 0, 0, 0.55);
  border-radius: 10px;
  padding: 5px;
}
.home .description h2 {
  color: white;
}
.home .description h3 {
  color: white;
  text-decoration-line: underline;
}/*# sourceMappingURL=style.css.map */