@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");
@import url("https://fonts.googleapis.com/css?family=Inconsolata:400,700");
@font-face {
  font-family: "royal";
  src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/455279/space.ttf") format("truetype");
  src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/455279/space.woff") format("woff");
}
:root {
  --main-color: #00ffff;
}

html {
  text-rendering: geometricPrecision;
  overflow: hidden;
  user-select: none;
  font-family: "royal", arial;
  font-weight: lighter;
}

.overrender {
  z-index: 2;
}

body {
  margin: 0;
  background: #0d0d0d;
  color: white;
  overflow-y: scroll;
  height: 100vh;
}

main {
  display: block;
  margin: -1vh auto 0 auto;
  padding: 0;
  color: white;
  overflow-x: hidden;
}
main:before {
  content: "Draggable";
  color: rgba(255, 255, 255, 0.01);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  font-size: 10vw;
}
main .bar {
  height: 0.5vh;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--main-color), transparent);
}
main input[type=color] {
  position: absolute;
  border: 0;
  top: 1vh;
  left: 1vh;
  background-color: transparent;
  opacity: 0.1;
  transition: opacity 0.1s;
}
main input[type=color]:hover {
  opacity: 1;
}
main #frame {
  height: 76vh;
  padding: 2vh 0 8vh 0;
  align-items: flex-start;
  overflow-y: scroll;
}
main .form {
  position: relative;
  align-self: start;
  top: 5vh;
  max-width: 42.25vh;
  padding: 1vh;
  background-color: #0d0d0d;
  background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/455279/dark-mosaic.png);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 2vh 2vh 1vh rgba(0, 0, 0, 0.25);
}
main .form:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5vh;
  left: -0.1vh;
  height: 100%;
  width: 0.2vh;
  padding: 0.5vh 0 0.5vh 0;
  background-color: var(--main-color);
  box-shadow: 0 0 1vh var(--main-color);
  animation-name: neon-blink-right;
  animation-iteration-count: 1;
  animation-duration: 7s;
}
main .form:after {
  content: "";
  position: absolute;
  right: -0.1vh;
  bottom: -0.5vh;
  width: 0.2vh;
  height: 100%;
  padding: 0.5vh 0 0.5vh 0;
  background-color: var(--main-color);
  box-shadow: 0 0 1vh var(--main-color);
  animation-name: neon-blink-left;
  animation-iteration-count: 1;
  animation-duration: 7s;
}
main .form .sub-form {
  padding: 1vh;
}
main .form .sub-form .alert {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--main-color);
  background-color: rgba(0, 0, 0, 0.75);
  font-size: lighter;
  width: 100%;
  height: 100%;
  padding: 0;
  display: none;
  z-index: 3;
  border-radius: 0.5vh;
}
main .form .sub-form .alert p {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20vh;
  margin: 0;
  padding: 4vh 4vh 4.1vh 4vh;
  font-size: 1.75vh;
  transform: translate(-50%, -50%);
  text-align: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), black, rgba(0, 0, 0, 0));
}
main .form .sub-form .alert p:after {
  content: "Click to continue";
  position: absolute;
  bottom: -1vh;
  left: 0;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.1);
  font-size: 1vh;
}
main .form .sub-form .catagory {
  font-weight: lighter;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 4vh black;
  border-radius: 0.5vh;
  background: linear-gradient(#1a1a1a, #0d0d0d);
  padding: 1vh;
  align-items: center;
  transition: border-color 0.1s, background-size 0.1s, filter 0.1s, box-shadow 0.1s;
}
main .form .sub-form .catagory:hover {
  cursor: pointer;
  filter: grayscale(0%);
  background-size: 101% 101%;
  border-color: var(--main-color);
  box-shadow: inset 0 0 2vh black, inset 0 0 1vh var(--main-color), 0 0 1vh var(--main-color);
}
main .form .sub-form .catagory input[type=checkbox] {
  -webkit-appearance: none;
  margin: 1vh 0 1vh 0;
  height: 2vh;
  width: 2vh;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.25vh;
}
main .form .sub-form .catagory input[type=checkbox]:hover {
  cursor: pointer;
  border: 1px solid var(--main-color);
  box-shadow: inset 0 0 2vh black, inset 0 0 1vh var(--main-color), 0 0 1vh var(--main-color);
}
main .form .sub-form .catagory input[type=checkbox]:checked {
  position: relative;
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  box-shadow: inset 0 0 2vh black, inset 0 0 1vh var(--main-color), 0 0 1vh var(--main-color);
}
main .form .sub-form .catagory input[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 40%;
  width: 40%;
  border-radius: 1vh;
  background-color: var(--main-color);
}
main .form .sub-form .catagory label {
  font-size: 1.25vh;
  color: white;
  font-weight: lighter;
}
main .form .sub-form .catagory input[type=email] {
  margin: 0 0 1vh 0;
}
main .form .sub-form .catagory .textbox {
  padding: 1vh;
  width: 36vh;
  font-family: "Inconsolata", arial;
  background: linear-gradient(40deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--main-color);
  font-size: 1.75vh;
  resize: none;
  border-radius: 0.25vh;
  outline: 0;
}
main .form .sub-form .catagory textarea {
  margin: 0;
  height: 35vh;
}
main .form .sub-form .catagory .button {
  border-radius: 0.25vh;
  font-size: 2.25vh;
  padding: 1vh 1vh 1.2vh 1vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.1);
  transition: color 0.1s, border-color 0.1s, transform 0.1s, box-shadow 0.1s;
}
main .form .sub-form .catagory .button:hover {
  color: var(--main-color);
  text-shadow: 0 0.5vh 0 rgba(0, 0, 0, 0.5);
}
main .form .sub-form .catagory .button:active {
  border-color: var(--main-color);
  transform: scale(0.97, 0.97);
  box-shadow: inset 0 0 2vh black, inset 0 0 1vh var(--main-color), 0 0 1vh var(--main-color);
}
main .form .sub-form .catagory .sent {
  border-color: var(--main-color);
  box-shadow: inset 0 0 2vh black, inset 0 0 1vh var(--main-color), 0 0 1vh var(--main-color);
  color: var(--main-color);
}
main .form .sub-form .catagory h2 {
  position: relative;
  margin: 0;
  font-weight: lighter;
  font-size: 2.8vh;
  color: white;
}
main .form .sub-form .catagory h2:before {
  content: attr(name);
  position: absolute;
  top: 1.75vh;
  transform: rotateX(180deg);
  background: linear-gradient(transparent, transparent, #1a1a1a, #6a6a6a, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
main .form .sub-form .catagory h2:after {
  content: "";
  position: absolute;
  bottom: -5.5vh;
  right: -1vh;
  height: 6.75vh;
  width: 1vh;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
main .form .sub-form .catagory p {
  text-align: justify;
  margin: 0;
  color: #ecf0f1;
  font-size: 1.5vh;
  font-family: Inconsolata;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1vh;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent);
}
main .form .sub-form .catagory .game {
  height: 13vh;
  width: 20vh;
  filter: grayscale(100%);
  background-repeat: no-repeat;
  box-shadow: inset 0 0 4vh black;
  border-radius: 0.5vh;
  background-size: cover;
  background-position: center;
  transition: filter 0.1s;
}
main .form .sub-form .catagory .game:hover {
  cursor: pointer;
  filter: grayscale(0%);
}
main .form .sub-form .person {
  position: relative;
  height: 8.75vh;
  width: 8.75vh;
  filter: grayscale(100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 4vh black;
  border-radius: 0.5vh;
  background-repeat: no-repeat;
  background-size: 110% 110%;
  background-position: center;
  transition: border-color 0.1s, background-size 0.1s, filter 0.1s, box-shadow 0.1s;
}
main .form .sub-form .person:after {
  content: attr(name);
  position: absolute;
  top: 0.25vh;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  opacity: 0;
  transition: opacity 0.25s;
  font-size: 1.5vh;
}
main .form .sub-form .person:before {
  content: attr(talent);
  position: absolute;
  bottom: 0.5vh;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  opacity: 0;
  transition: opacity 0.25s;
  font-size: 1vh;
}
main .form .sub-form .person:hover:after {
  opacity: 1;
}
main .form .sub-form .person:hover:before {
  opacity: 1;
}
main .form .sub-form .person:hover {
  cursor: pointer;
  filter: grayscale(0%);
  background-size: 101% 101%;
  border-color: var(--main-color);
  box-shadow: inset 0 0 2vh black, inset 0 0 1vh var(--main-color), 0 0 1vh var(--main-color);
}
main .form h1 {
  position: absolute;
  cursor: pointer;
  min-width: 30vh;
  left: -1vh;
  top: -5.45vh;
  padding: 1vh 1vh 1.25vh 1vh;
  color: white;
  font-size: 2vh;
  text-align: center;
  font-weight: lighter;
  width: 100%;
  background: linear-gradient(90deg, #0d0d0d, #1a1a1a, #0d0d0d);
  box-shadow: 0 1vh 1vh rgba(0, 0, 0, 0.25);
  z-index: 1;
}
main .form h1:before {
  font-weight: lighter;
  content: attr(name);
  position: absolute;
  bottom: 0;
  transform: rotateX(180deg);
  color: white;
  background: linear-gradient(transparent, transparent, #1a1a1a, #6a6a6a, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
main header {
  margin: 0;
  padding: 4vh 0 0 0;
  position: relative;
  font-size: 5.5vh;
  text-align: center;
}
main header p {
  position: relative;
  margin: 0;
  padding: 0;
  display: inline-block;
  color: white;
  font-size: 6vh;
}
main header p:nth-child(1) {
  color: var(--main-color);
  text-shadow: 0 0 5vh var(--main-color);
  animation-name: neon-blink-title;
  animation-iteration-count: 1;
  animation-duration: 2s;
}
main header p:nth-child(2):before {
  position: absolute;
  bottom: -3.8vh;
  transform: rotateX(180deg);
  content: "React";
  color: white;
  background: linear-gradient(transparent, transparent, transparent, #1a1a1a, #6a6a6a, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flex-start {
  align-items: flex-start;
}

.flex-end {
  align-items: flex-end;
}

.flex-center {
  align-items: center;
}

.base-line {
  justify-content: base-line;
}

.center {
  justify-content: center;
}

.around {
  justify-content: space-around;
}

.between {
  justify-content: space-between;
}

.evenly {
  justify-content: space-evenly;
}

.flex {
  display: flex;
  flex-flow: wrap;
  gap: 1vh;
}

.row {
  display: flex;
  flex-flow: row;
  gap: 1vh;
}

.bigger-gap {
  gap: 8vh 2vh;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  background-color: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 100%;
}

@keyframes neon-blink-left {
  0% {
    box-shadow: 0;
  }
  10% {
    box-shadow: 0 0 2vh var(--main-color), 0 0 1vh var(--main-color);
  }
  30% {
    box-shadow: 0 0 0.3vh var(--main-color), 0 0 0.1vh var(--main-color);
  }
  50% {
    box-shadow: 0 0 1vh var(--main-color), 0 0 0.5vh var(--main-color);
  }
  100% {
    box-shadow: 0;
  }
}
@keyframes neon-blink-right {
  0% {
    box-shadow: 0;
  }
  20% {
    box-shadow: 0 0 1vh var(--main-color), 0 0 0.5vh var(--main-color);
  }
  40% {
    box-shadow: 0 0 0.1vh var(--main-color);
  }
  70% {
    box-shadow: 0 0 2vh var(--main-color), 0 0 1vh var(--main-color);
  }
  100% {
    box-shadow: 0;
  }
}
@keyframes neon-blink-title {
  0% {
    text-shadow: 0;
  }
  20% {
    text-shadow: 0 0 1vh var(--main-color), 0 0 0.5vh var(--main-color);
  }
  40% {
    text-shadow: 0 0 0.1vh var(--main-color);
  }
  70% {
    text-shadow: 0 0 2vh var(--main-color), 0 0 1vh var(--main-color);
  }
  100% {
    text-shadow: 0;
  }
}
@keyframes lineheight-glitch {
  0% {
    line-height: 1vh;
  }
  20% {
    line-height: 2vh;
  }
  40% {
    line-height: 0.86vh;
  }
  70% {
    line-height: 3vh;
    text-indent: 1vh;
  }
  100% {
    text-shadow: 1vh;
  }
}