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

body {
  font-family: "Comfortaa", cursive;
  background: #000;
  color: #fff;
  overflow-y: scroll;
  overflow-x: hidden;
}

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

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-thumb {
  border: 2px #237648 solid;
  border-radius: 15px;
  background-color: #32a868;
}

.codeblock {
  margin-top: 5px;
  margin-bottom: 0px;
  font-size: 0.8em;
  font-weight: 400;
  color: #ffffff;
  background-color: #292929;
  border: 0px #292929 solid;
  border-radius: 5px;
  width: fit-content;
  padding: 10px;
  overflow: auto;
}

.center {
  border: 2px #32a868 solid;
  border-radius: 3px;
  width: 60%;
  left: 50%;
  position: relative;
  transform: translate(-50%, 0px);
  transition: 0.5s;
}

.center:hover {
  width: 150%;
}

.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 {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 2.5em;
  font-weight: 800;
  text-align: center;
}

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


.bg {
  background-color: #3a3a3a;
  overflow-x: visible;
  padding: 25px;
  height: auto;
  border: 2px #32a868 solid;
  border-radius: 3px;
  width: 50%;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

.splitter {
  border-top: #32a868 2px solid;
  padding-top: 30px;
  margin-top: 35px;
}

.abutton {
  color: #32b2bf;
}

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

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;
}