header {
  display: flex;
  width: 100%;
  height: 15dvh;
  justify-content: end;
}
header #logo {
  display: block;
}
header #logo:hover {
  cursor: pointer;
}
header #nav {
  display: block;
  width: 100dvw;
  height: 100dvh;
  z-index: 9;
  position: block;
  margin: 0 auto;
}
header #nav ul {
  display: flex;
  list-style-type: none;
  gap: 2.2em;
  font-weight: bold;
  font-size: 2em;
  margin: 0;
  padding: 0;
  height: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
}
header #nav ul a {
  text-decoration: none;
  color: black;
}
header #nav ul a:hover {
  text-decoration: underline;
}
header #nav ul a:visited {
  color: black;
}
header #burger {
  display: block;
  position: absolute;
  left: 25px;
  top: 50px;
  cursor: pointer;
}
header #close {
  display: block;
  position: absolute;
  left: 25px;
  top: 50px;
  cursor: pointer;
  z-index: 10;
}
header img {
  width: 50px;
  position: absolute;
  top: 25px;
  left: 25px;
}
@media screen and (min-width: 1023px) {
  header {
    height: 100px;
    justify-content: end;
    flex-direction: row;
  }
  header #logo {
    display: block;
    position: absolute;
    left: 10px;
    top: -1;
    width: 8%;
    height: auto;
  }
  header #logo img:hover {
    cursor: pointer;
  }
  header #burger {
    display: none;
  }
  header #nav {
    display: flex;
    width: 100%;
    height: 100px;
    z-index: 0;
    margin: 0 auto;
    align-items: center;
    justify-content: end;
    flex-direction: row;
    align-content: center;
  }
  header #nav ul {
    height: 10%;
    margin: 0;
    padding: 0;
    display: inline-flex;
    flex-direction: row;
    font-size: large;
    margin-right: 4em;
  }
}
@media screen and (max-width: 550px) {
  header ul {
    font-size: small;
    gap: 1.4em;
  }
}

.stop-scroll {
  height: 100%;
  overflow: hidden;
}/*# sourceMappingURL=header.css.map */