@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap");
:root {
  --siteColor: #000020;
  --textMain: #e9ffff;
  --textColor1: #00f4f4;
  --textColor2: #73c2ce;
  --textColor3: #00ffff;
  --pMain: 3%;
  --pCon: 6%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  list-style: none;
  scroll-behavior: smooth;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

.closer,
a,
a:visited {
  color: var(--textColor2);
}
a:hover {
  color: var(--textColor1);
}
*::-webkit-scrollbar {
  display: none;
}
.wbtn {
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  border: 2px solid var(--textMain);
  background: transparent;
  color: var(--textMain);
  border-radius: 10px;
  padding: 10px 15px;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.wbtn::before {
  position: absolute;
  content: " ";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: #05bfdb;
  z-index: -1;
  transition: 0.3s;
}
.wbtn:hover {
  border-color: var(--textColor1);
  color: var(--siteColor);
}
.wbtn:hover:before {
  width: 100%;
}
/* Fonts */
.f1 {
  font-family: "Crimson Text", serif;
}
main {
  background: var(--siteColor);
  padding: 0 var(--pMain);
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
}
nav {
  padding: 0 var(--pMain);
  width: 100%;
  height: 60px;
  background: var(--siteColor);
  box-shadow: 1px 0 10px rgba(255, 255, 255, 0.053);
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav img {
  width: 45px;
  border-radius: 50%;
  border: 2px solid var(--textColor2);
}
nav img:hover {
  border-color: var(--textColor3);
}
nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 30vw;
}
nav ul li {
  margin-left: 20px;
}
nav ul li:hover {
  transform: scale(1.2, 1.2);
  font-weight: 600;
}
nav a {
  font-size: 1.2em;
  font-weight: 500;
}
nav .closer {
  font-size: 2em;
  display: none;
}
nav .bars {
  color: var(--textColor1);
  font-size: 2em;
  display: none;
}
main > section {
  width: 100%;
  padding-top: 60px;
  height: 100vh;
  color: var(--textColor1);
}

#home {
  position: relative;
}
#home .txt {
  padding: 0 var(--pCon);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#home span {
  color: var(--textColor3);
  display: block;
  margin-bottom: 5vh;
}
#home h1 {
  margin-bottom: 5vh;
  letter-spacing: 5px;
  font-size: 5em;
  color: var(--textMain);
}
#home .txt .st {
  font-size: 1.3em;
  color: cyan;
}
#home .ed {
  font-size: 1.5em;
  margin-bottom: 20px;
  text-align: justify;
}
#home .wbtn {
  display: inline-block;
  text-align: center;
  min-width: 20%;
}

/* FIT */

#overlay .left {
  margin-left: var(--pMain);
  position: fixed;
  left: 0;
  bottom: 0;
}
#overlay .left a {
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-bottom: 20px;
  text-align: center;
}
#overlay i {
  font-size: 19px;
}
#overlay .fa-discord {
  font-size: 16px;
}
#overlay i:hover {
  transform: scale(1.6, 1.6);
  color: var(--textColor1);
}
#overlay .v-line {
  width: 2px;
  margin: auto;
  margin-top: 10px;
  background: var(--textColor2);
  height: 110px;
}

/* Media Query */
@media (max-width: 720px) {
  #home h1 {
    font-size: 4em;
  }
  #home .ed {
    font-size: 1.4em;
  }
}
@media (max-width: 600px) {
  #home h1 {
    font-size: 3em;
  }
  #home .ed {
    font-size: 1.2em;
  }
}

.show {
  display: block;
}

@media (max-width: 460px) {
  nav .closer {
    display: inline-block;
  }
  nav ul {
    position: absolute;
    padding-top: 20px;
    top: 60px;
    left: 25%;
    right: 25%;
    flex-direction: column;
    width: 50vw;
    background-color: #c8fffe44;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: none;
  }
  nav ul li {
    margin-left: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  nav a:hover {
    color: var(--textColor1);
  }

  nav .bars {
    display: block;
  }
  #home h1 {
    font-size: 2em;
    letter-spacing: normal;
  }
  #home .ed {
    font-size: 1.1em;
  }
  #overlay {
    display: none;
  }
}
