@font-face {
  font-family: "AlienEnergy";
  src: url("Alien Energy.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  height: 100%;
  width: 100%;

  font-family: Arial, sans-serif;
  background-color: #2c2c2c;

  background-image: radial-gradient(
      circle at top right,
      rgba(8, 193, 177, 0.8) 2%,
      rgba(8, 193, 177, 0.5) 12%,
      rgba(8, 193, 177, 0.3) 22%,
      rgba(8, 193, 177, 0.2) 32%,
      rgba(8, 193, 177, 0.005) 42%,
      transparent 70%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(8, 193, 177, 0.4) 10%,
      rgba(8, 193, 177, 0.3) 20%,
      rgba(8, 193, 177, 0.2) 30%,
      rgba(8, 193, 177, 0.1) 40%,
      rgba(8, 193, 177, 0.005) 50%,
      transparent 70%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(8, 193, 177, 0.8) 2%,
      rgba(8, 193, 177, 0.5) 12%,
      rgba(8, 193, 177, 0.3) 22%,
      rgba(8, 193, 177, 0.2) 32%,
      rgba(8, 193, 177, 0.005) 42%,
      transparent 70%
    ),
    radial-gradient(
      circle at top left,
      rgba(8, 193, 177, 0.4) 10%,
      rgba(8, 193, 177, 0.3) 20%,
      rgba(8, 193, 177, 0.2) 30%,
      rgba(8, 193, 177, 0.1) 40%,
      rgba(8, 193, 177, 0.005) 50%,
      transparent 70%
    );

  background-size: 100vw 200vh;
  background-repeat: repeat-y;
  background-position: 0 0;
}
body {
  backdrop-filter: blur(20px);
  width: 100vw;
}
header {
  position: sticky;
  top: 0;
  right: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 0vh;
  position: relative;
  top: 0;
}

.logo {
  height: 1.8rem;
  width: auto;
  font-weight: bold;
  filter: brightness(0) invert(1);
}

.logo span {
  color: #00d4ff;
}
.menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  background-color: transparent;
  transition: all 0.3s ease;
  border-radius: 5px;
  border: 2px solid transparent;
}

.menu a:hover,
.menu a.active {
  border: 2px solid white;
  border-radius: 5px;
  background-color: white;
  color: black;
}
@media (max-width: 380px) {
  .nav {
    flex-direction: column-reverse;
    align-items: center;
  }
  .logo {
    display: none;
  }
}
@media (max-width: 600px) {
  header {
    position: relative;
  }
}
