@font-face {
  font-family: "JetBrains Mono";
  src: url("JetBrainsMono_Regular.ttf");
}

html,
body,
#mainContent {
  font-family: "JetBrains Mono";
  background: #0e0e0e url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  color: #f6f6f6;
  width: 100%;
  height: 100%;
  margin: 0;
}

::selection {
  background: #cbeffe;
  color: #0e0e0e;
}

.navigation {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1em;

  img {
    border: 1px solid #252525;
  }

  a {
    color: unset;
    text-decoration: none;
    font-size: 120%;
    text-transform: uppercase;
    border: 1px solid #252525;
    padding: .5em;
    transition: all .2s ease-out;

    &:hover {
      background: #cbeffe;
      color: #0e0e0e;
    }
  }
}

.navigationHeader {
  display: flex;
  gap: 1em;
  align-items: center;
}

.navigationButtons {
  display: flex;
  gap: 0.5em;
}
