@import url("/fonts/style.css");

body {
  font-family: "Comfortaa", cursive;
  background: #000;
  color: #fff;
  overflow: hidden;
  margin: 0;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.main {
  opacity: 1;
}

.about {
  display: none;
  opacity: 0;
  height: 100vh;
}

.title,
.subtitle,
.paragraph {
  color: #32a868;
  font-weight: 400;
  margin: 0;
}

.title {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 4em;
  margin-bottom: 0.6em;
}

.subtitle {
  font-size: 2.5em;
  font-weight: 800;
}

.paragraph {
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 900;
}

.dotsleft {
  background: -webkit-linear-gradient(left, #32a868, #0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dotsright {
  background: -webkit-linear-gradient(right, #32a868, #0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.button1, .button2 {
  font-family: "Comfortaa", cursive;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 1em;
  color: #32b2bf;
  outline: 0;
  text-decoration: none;
}

a {
  background-size: 30px 30px;
  background-repeat: no-repeat;
  padding: 30px;
}

.button2 {
  font-size: 1.5em;
}

.line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,#0000,#32a868,#0000);
}

.maintext {
  padding: 4em;
  position: absolute;
  transform: translate(0, -50%);
  left: 1px;
  top: 50%;
  cursor: default;
}

.abouttext {
  text-align: center;
  position: absolute;
  transform: translate(-50%, -80%);
  left: 50%;
  top: 50%;
}

.figure-1 {
  position: fixed;
  height: 130vh;
  top: -20vh;
  transform: translateX(-50%) scaleX(1.2);
}

.figure-2 {
  position: fixed;
  height: 130vh;
  bottom: -20vh;
  transform: translateX(100vw) translateX(-50%) rotate(180deg) scaleX(-1.2);
}

.logo {
  width: 350px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(5deg);
}

.abutton:hover,
.abutton:active {
  color: #32a868;
  font-weight: 900;
}

.loginBox {
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.loginBox-content {
  display: none;
  padding: 30px;
  border: 2px solid #32a868;
  border-radius: 4px;
  background-color: #000000;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  float: right;
  cursor: pointer;
  transform: translateY(-50%);
}

input[type="text"],
input[type="password"] {
  width: 80%;
  padding: 5px;
  outline: none;
  border: 2px solid #32a868;
  border-radius: 4px;
  background-color: black;
  color: white;
  text-align: center;
  font-size: 1.3em;
}

input[type="password"] {
  font-family: caption;
}

input[type="text"] {
  font-family: "Roboto", sans-serif;
}

.fadein {
  animation: 1s 1 forwards normal fadein;
}

.fadein2 {
  animation: 0.5s 1 forwards normal fadein;
}

.fadeout {
  animation: 1s 1 forwards normal fadeout;
}

.fadefast {
  animation: 0s 0.5s 1 forwards normal fadeout;
}

.slideleft {
  animation: 2s 1 forwards normal slideleft;
}

.slideright {
  animation: 2s 1 forwards normal slideright;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes slideleft {
  from {
    transform: translateX(100vw) translateX(-50%) rotate(180deg) scaleX(-1.2);
  }
  to {
    transform: translate(-50%, 0) rotate(180deg) scaleX(-1.2);
  }
}

@keyframes slideright {
  from {
    transform: translate(-50%, 0) scaleX(1.2);
  }
  to {
    transform: translateX(100vw) translateX(-50%) scaleX(1.2);
  }
}
