.navigation {
  position: relative;

  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;

  z-index: 1;
}

.title_container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  pointer-events: none;

  background: var(
    --colour_black
  );

  user-select: none;
}

.title {
  max-width: 100%;
  margin: 0;

  font-size: 8dvw;
  line-height: 6dvw;

  word-break: break-all;

  letter-spacing: -34px;

  color: var(
    --colour_white
  );
}

.navigation_section {
  width: 100%;
  height: 100%;

  a {
    font-weight: 700;
    color: var(--colour_blue);
    text-decoration: none;

    &.button {
      margin: 0.5em;
    }
  }
}

.navigation_container_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;

  padding: 10rem 0;

  &:first-of-type {
    min-height: 100%;
  }
}

.navigation_container {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 95%;
  max-width: 900px;

  margin: 2rem auto;
  padding: 2rem;

  background: var(
    --colour_white
  );
}

.tools {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 1rem;
  row-gap: 2rem;

  padding: 2rem 0;
}

.border {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  border: 10px solid var(--colour_text);

  pointer-events: none;
}
