.header__container {
  position: fixed;
  display: flex;
  top: 0;
  height: 3em;
  width: 100%;
  background-color: var(--colour-blue);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
  min-width: 340px;
  z-index: 1;
}

.header__menu {
  position: fixed;
  margin: 0;
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: end;
  font-size: 1em;
  right: -200%;
  top: -200%;
  padding: 20px;
  gap: 20px;
  background-color: var(--colour-blue-9);
  list-style: none;
  width: 100%;
  transform: scale(0);
  transition: 0.2s ease-in-out;
}

.header__menu.active {
  top: 3em;
  right: 0px;
  transform: scale(1);
}

.header__link {
  color: white;
  text-decoration: none;
  padding: 0.5em 0.75em;
  transition: background-color 0.2s ease-in-out;
  text-wrap: nowrap;
  font-family: "Oswald", sans-serif;
}

.header__link:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

/* Media Queries  /////////////////////////////////////////////////*/

@media (min-width: 768px) {
  .header__menu {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 2em;
    right: 0;
    top: 0.5em;
    padding: 0;
    gap: 10px;
    transition: none;
    transform: scale(1);
  }

  .header__menu.active {
    top: 0.5em;
  }

  .header__mobile-menu {
    display: none;
  }
}

@media (min-width: 1536px) {
  .header__container {
    height: 3.2em;
  }

  .header__menu {
    font-size: 1.1em;
    top: 0.42em;
  }

  .header__menu.active {
    top: 0.42em;
  }
}
