#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;
}

.NavBar {
  align-items: flex-start;
  background-image: linear-gradient(to right, #a0b6d4, #ffffff);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.logo-container {
  width: 60%;
}

@media screen and (min-width: 768px) {
  .logo {
    margin-left: 30%;
    width: 30%;
  }
  
  .menu-items {
    background-color: #033e8d;
    list-style: none;
    margin: 0;
    padding: 0 0.5rem;
    position: absolute;
    transform: translateY(-300vh);
    transition: transform 0.5s ease-in-out;
    width: 50%;
    z-index: 5;
  }
  
  #login {
    border-radius: 100%;
    height: 3rem;
    margin: 0.5rem;
    width: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .logo {
    width: 100%;
  }
  
  .menu-items {
    background-color: #033e8d;
    list-style: none;
    margin: 0;
    padding: 0 0.5rem;
    position: absolute;
    transform: translateY(-300vh);
    transition: transform 0.5s ease-in-out;
    width: 90%;
    z-index: 5;
  }

  #login {
    border-radius: 100%;
    height: 2rem;
    margin: 0.5rem;
    width: 2rem;
  }
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  height: 1.15rem;
  justify-content: space-between;
  margin-left: 1rem;
  margin-top: 1rem;
  width: 1.5rem;
  z-index: 2;
}

.line {
  background: #043a7c;
  border-radius: 10rem;
  display: block;
  height: 0.1rem;
  width: 100%;
}

.hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.open .line1 {
  transform: rotate(45deg);
}

.open .line2 {
  transform: scaleY(0);
}

.open .line3 {
  transform: rotate(-45deg);
}

.open .menu-items {
  transform: translateY(0);
}

.menu-items li {
  border-top: solid #004aa2;
  color: white;
  font-family: Helvetica, sans-serif;
  font-size: 1.1rem;
  height: 0.5rem;
  margin-left: 1rem;
  padding: 1rem 0.3rem;
}

.menu-items a {
  text-decoration: none;
}

.menu-items li:hover {
  background-color: #004aa2;
}

.unseen li {
  display: none;
}

.seen li {
  list-style: none;
  margin: 0;
}

.more-info {
  background-color: lightgray;
  bottom: 150vh;
  margin: 5rem;
  position: absolute;
  transition: transform 0.5s ease-in-out;
  z-index: 4;
}

.on {
  transform: translateY(200vh);
}
