body {
  background: #15083E;
  margin: 0px;
  
  font-family: "Poppins", monospace;
  font-size: 20px;
  
  overflow-x: hidden;
  
  animation: smooth 2s;
}

@keyframes smooth {
  from {
    transform: translateY(1000px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

a {
  text-decoration: none;
  color: white;
}

/* Header */

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 30px;
  
  overflow-x: auto;
  overflow-y: hidden;
  
  backdrop-filter: blur(5px);
  background: linear-gradient(
    90deg,
    rgba(0, 58, 172, 0.6),
    rgba(43, 115, 255, 0.6)
  );
  
  border-bottom: 1px solid;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  
  box-shadow: 0 2px 10px;
  
  font-family: monospace;
  font-weight: 900;
  letter-spacing: -1.5px;
  text-shadow: 0 0 10px black;
  
  padding: 5px;
  z-index: 99;
}

header * {
  display: flex;
  flex-shrink: 0;
  
  margin: 5px;
  transition: 0.3s;
}

#headerJoinBtn {
  background: transparent;
  color: #052057;
  border: 1px solid;
  border-radius: 5px;
  
  font-size: 20px;
  font-weight: bolder;
  font-family: monospace;
}


header::-webkit-scrollbar {
  width: 10px;
}
header::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: linear-gradient(
    100deg,
    #3F7EFF,
    #3FB3FF
  )
}
header::-webkit-scrollbar-track {
  width: 5px;
  background: #817B93;
}


#headerShadowSMP {
  background: linear-gradient(
    100deg,
    #2EB9FF,
    #D514E2
  );
  
  text-shadow: none;
  
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

header a:hover {
  color: red;
  transform: scale(0.9);
  background: #8DB3FF;
  
  border: 2px solid;
  border-radius: 5px;
  
  filter: drop-shadow(0 0 5px red);
}

#headerJoinBtn:hover {
  transform: scale(0.9);
  color: white;
}

/* Nav */

nav {
  padding: 50px 5px 10px 5px;
  
  backdrop-filter: blur(15px);
  background: rgba(141, 207, 255, 0.3);
  
  animation: navBackground 5s infinite;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  
  border-bottom: 1px solid;
  box-shadow: inset 0 0 60px #FF0FE4, 0 2px 10px;
}

#logo {
  background: url("logo.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  
  border: 2px solid white;
  border-radius: 20px;
  
  padding: 50px 100px 50px 100px;
}

#navText {
  background: linear-gradient(
    100deg,
    #3577FF,
    #FF0FE4
  );
  filter: drop-shadow(0 0 10px);
  
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0px;
}

@keyframes navBackground {
  20% {
    box-shadow: inset 0 0 60px #FF0FE4;
  }
  40% {
    box-shadow: inset 0 0 60px #0F54FF;
  }
  60% {
    box-shadow: inset 0 0 60px #0FA5FF;
  }
  80% {
    box-shadow: inset 0 0 60px #EE3333;
  } 
  100% {
    box-shadow: inset 0 0 60px #0FFF3D;
  } 
}

#navIntro {
  font-weight: 900;
  font-family: monospace;
  letter-spacing: -1.5px;
  
  color: white;
  filter: drop-shadow(0 0 5px black);
}

#navMcText {
  background: linear-gradient(
    100deg,
    #6FCE23,
    #01AC4C
  );
  
  font-size: 25px;
  
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  font-weight: 900;
  letter-spacing: -1px;
}


/* Hero Secrion */

#main {
  padding: 10px 5px 10px 5px;
  margin: 20px 0px 20px 0px;
  
  backdrop-filter: blur(5px);
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  
  color: white;
  text-shadow: 0 0 10px black;
  text-align: center;
}


/* Second Main */

#secondMain {
  animation: insideGlow 5s infinite;
  box-shadow: inset 0 0 20px #0D91FF;
  
  backdrop-filter: blur(5px);
  padding: 10px;
  margin: 20px 0px 20px 0px;
  
  color: #01C8EC;
  font-weight: bolder;
  text-align: center;
}



@keyframes insideGlow {
  0% {
    box-shadow: inset 0 0 40px #0D91FF;
  }
  20% {
    box-shadow: inset 0 0 40px #0695AF;
  }
  50% {
    box-shadow: inset 0 0 40px #D544FF;
  }
  100% {
    box-shadow: inset 0 0 40px #0D61FF;
  }
}


/* Multiple time used */


.leftAligner {
  text-align: left;
}

.heroWrapper {
  background: url("wrapper.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Footer */

footer {
  background: #040288;
  padding: 10px 5px 10px 5px;
  
  text-align: center;
  color: white;
}

#footerLogo {
  background: linear-gradient(
    100deg,
    #CE00FD,
    #68C8F8
  );
  
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  filter: drop-shadow(0 0 5px black);
}