* {
  box-sizing: border-box;
  margin: 0px;
  scroll-behavior: smooth;
  transition: all 0.3s;
}

body {
  background-color: rgb(24, 24, 24);
}

html,
body {
  overflow: hidden;
  max-width: 100%;
  height: 100%;
}

#navbar {
  width: 100vw;
  min-height: 60px;
  background-color: rgb(32, 32, 32);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  position: fixed;
  top: 0;
}

#navbar > div {
  height: 100%;
  font-size: 40px;
  color: white;
  font-family: "Poppins", sans-serif;
}

#main {
  padding-top: 60px;
  background-color: #181818;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  justify-content: center;
  font-family: "Roboto Mono", monospace;
  color: white;
}
#main h1 {
  font-size: 2.5em;
}
#main h2 {
  font-size: 1.9em;
  text-align: center;
}
#main h2 a {
  background-image: linear-gradient(129deg, #ff00f7, rgb(6, 255, 255), rgb(43, 255, 0));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 500% 500%;
  animation: gradient 4s ease infinite;
  -webkit-animation: gradient 4s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}