@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap");

:root {
  --dark: #374151;
  --darker: #1f2937;
  --darkest: #212121;
  --gray: #6b7280;
  --light: #eee;
  --fa-text: "Font Awesome 5 Free";
  --google-font-roboto-condensed: "Roboto Condensed", sans-serif;
  --sunColor: #f4d03f;
  --sunColorTwo: #f1c40f;
  --shadowOne: -1px 6px 25px -12px rgba(0, 0, 0, 0.75);
  --shadowTwo: -1px 1px 25px -8px rgba(0, 0, 0, 0.75);

  color: #fff;
  font-family: "Inter", sans-serif;
}

body {
  background-color: var(--darkest);
  transition: 0.3s ease-in-out;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
.scrollbar {
  margin-left: 22px;
  float: left;
  height: 300px;
  width: 65px;
  background: #f5f5f5;
  overflow-y: scroll;
  margin-bottom: 25px;
}

.force-overflow {
  min-height: 450px;
}

#wrapper {
  text-align: center;
  margin: auto;
}
body::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: var(--darker); /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--dark); /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 3px solid var(--dark); /* creates padding around scroll thumb */
}
/*
 *  STYLE 1
 */

#style-1::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

#style-1::-webkit-scrollbar {
  width: 12px;
  background-color: #f5f5f5;
}

#style-1::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}

.text-container {
  background-color: var(--darkest);
  padding: 20rem;
}

.text {
  text-transform: uppercase;
  font-size: 4rem;
  text-align: center;
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transition: all 1s;
  transform: translateX(-100%);
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.left_aligned {
  text-align: left;
}

.right_aligned {
  text-align: right;
}

.center_aligned {
  text-align: center;
}

section {
  display: grid;
  place-items: left;
  align-content: left;
  padding: 5rem;
  min-height: 0.1vh;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transition: all 1s;
}

.show {
  opacity: 1;
  filter: blur(0);
}

.ry {
  margin-top: 10px;
  font-size: 9rem;
  font-family: "Inter", sans-serif;
  color: var(--light);
}

.yr {
  font-family: "Roboto Mono", monospace;
  font-weight: 500;
  color: var(--light);
  line-height: 1em;
  font-size: 1rem;
  margin: 200px;
}

.b {
  color: var(--col-primary);
  font-weight: bold;
  font-size: 4rem;
}

.u {
  color: var(--col-primary);
  font-family: "Roboto Mono", monospace;
  font-size: 1.5rem;
  font-weight: 500;
}

.bn47 {
  position: absolute;
  text-align: center;
  top: 100%;
  left: 45%;
  padding: 1rem 2rem 0.5rem 2.5rem;
  color: var(--light);
  border: 3px solid #776e62;
  -webkit-transition: padding 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}

.bn47:before {
  content: "";
  text-align: center;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: -1;
  height: 100%;
  width: 100%;
  background-color: var(--darkest);
  border-right: 3px solid var(--dark);
  border-bottom: 3px solid var(--dark);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.bn47:hover {
  padding: 0.75rem 2.25rem;
}

.bn47:hover:before {
  top: 0;
  left: 0;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto;

  gap: 5px;
  background-color: black;
  padding: 10px;
}

.grid-container > div {
  background-color: var(--dark);
  border: 0.2px solid black;
  text-align: center;
  font-size: 30px;
}

/*wtf use classes and ids
input {
  opacity: 0;
  height: 0;
  width: 0;
}*/

span {
  width: 63px;
}

/*wtf use classes and ids
input:before {
  position: absolute;
  top: 7px;
  left: 6px;
  content: "";
}
*/
.slide {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ddd;
  box-shadow: --shadowOne;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slide:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 999;
}

.slide:after {
  position: absolute;
  top: 8px;
  right: 5px;
  color: --sunColorTwo;
  font-family: --fa-text;
  vertical-align: middle;
  font-weight: 900;
  font-size: 1.1rem;
  content: "\f186";
  display: inline-block;
  z-index: 1;
}
/* CSS */
.button-3 {
  appearance: none;
  background-color: blue;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.container {
  width: 800px;
  height: 420px;
  padding: 10px;
  margin: 0 auto;
  position: relative;
}
.balloon {
  width: 738px;
  margin: 0 auto;
  padding-top: 30px;
  position: relative;
}
.balloon > div {
  width: 104px;
  height: 140px;
  background: rgba(182, 15, 97, 0.9);
  border-radius: 0;
  border-radius: 80% 80% 80% 80%;
  margin: 0 auto;
  position: absolute;
  padding: 10px;
  box-shadow: inset 17px 7px 10px rgba(182, 15, 97, 0.9);
  -webkit-transform-origin: bottom center;
}
.balloon > div:nth-child(1) {
  background: rgba(182, 15, 97, 0.9);
  left: 0;
  box-shadow: inset 10px 10px 10px rgba(135, 11, 72, 0.9);
  -webkit-animation: balloon1 6s ease-in-out infinite;
  -moz-animation: balloon1 6s ease-in-out infinite;
  -o-animation: balloon1 6s ease-in-out infinite;
  animation: balloon1 6s ease-in-out infinite;
}
.balloon > div:nth-child(1):before {
  color: rgba(182, 15, 97, 0.9);
}
.balloon > div:nth-child(2) {
  background: rgba(242, 112, 45, 0.9);
  left: 120px;
  box-shadow: inset 10px 10px 10px rgba(222, 85, 14, 0.9);
  -webkit-animation: balloon2 6s ease-in-out infinite;
  -moz-animation: balloon2 6s ease-in-out infinite;
  -o-animation: balloon2 6s ease-in-out infinite;
  animation: balloon2 6s ease-in-out infinite;
}
.balloon > div:nth-child(2):before {
  color: rgba(242, 112, 45, 0.9);
}
.balloon > div:nth-child(3) {
  background: rgba(45, 181, 167, 0.9);
  left: 240px;
  box-shadow: inset 10px 10px 10px rgba(35, 140, 129, 0.9);
  -webkit-animation: balloon4 6s ease-in-out infinite;
  -moz-animation: balloon4 6s ease-in-out infinite;
  -o-animation: balloon4 6s ease-in-out infinite;
  animation: balloon4 6s ease-in-out infinite;
}
.balloon > div:nth-child(3):before {
  color: rgba(45, 181, 167, 0.9);
}
.balloon > div:nth-child(4) {
  background: rgba(190, 61, 244, 0.9);
  left: 360px;
  box-shadow: inset 10px 10px 10px rgba(173, 14, 240, 0.9);
  -webkit-animation: balloon1 5s ease-in-out infinite;
  -moz-animation: balloon1 5s ease-in-out infinite;
  -o-animation: balloon1 5s ease-in-out infinite;
  animation: balloon1 5s ease-in-out infinite;
}
.balloon > div:nth-child(4):before {
  color: rgba(190, 61, 244, 0.9);
}
.balloon > div:nth-child(5) {
  background: rgba(180, 224, 67, 0.9);
  left: 480px;
  box-shadow: inset 10px 10px 10px rgba(158, 206, 34, 0.9);
  -webkit-animation: balloon3 5s ease-in-out infinite;
  -moz-animation: balloon3 5s ease-in-out infinite;
  -o-animation: balloon3 5s ease-in-out infinite;
  animation: balloon3 5s ease-in-out infinite;
}
.balloon > div:nth-child(5):before {
  color: rgba(180, 224, 67, 0.9);
}
.balloon > div:nth-child(6) {
  background: rgba(242, 194, 58, 0.9);
  left: 600px;
  box-shadow: inset 10px 10px 10px rgba(234, 177, 15, 0.9);
  -webkit-animation: balloon2 3s ease-in-out infinite;
  -moz-animation: balloon2 3s ease-in-out infinite;
  -o-animation: balloon2 3s ease-in-out infinite;
  animation: balloon2 3s ease-in-out infinite;
}
.balloon > div:nth-child(6):before {
  color: rgba(242, 194, 58, 0.9);
}
.balloon > div:before {
  color: rgba(182, 15, 97, 0.9);
  position: absolute;
  bottom: -11px;
  left: 52px;
  content: "▲";
  font-size: 1em;
}
span {
  font-size: 4.8em;
  color: white;
  position: relative;
  top: 30px;
  left: 50%;
  margin-left: -27px;
}
/*BALLOON 1 4*/
@-webkit-keyframes balloon1 {
  0%,
  100% {
    -webkit-transform: translateY(0) rotate(-6deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(8deg);
  }
}
@-moz-keyframes balloon1 {
  0%,
  100% {
    -moz-transform: translateY(0) rotate(-6deg);
  }
  50% {
    -moz-transform: translateY(-20px) rotate(8deg);
  }
}
@-o-keyframes balloon1 {
  0%,
  100% {
    -o-transform: translateY(0) rotate(-6deg);
  }
  50% {
    -o-transform: translateY(-20px) rotate(8deg);
  }
}
@keyframes balloon1 {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-20px) rotate(8deg);
  }
}
/* BAllOON 2 5*/
@-webkit-keyframes balloon2 {
  0%,
  100% {
    -webkit-transform: translateY(0) rotate(6eg);
  }
  50% {
    -webkit-transform: translateY(-30px) rotate(-8deg);
  }
}
@-moz-keyframes balloon2 {
  0%,
  100% {
    -moz-transform: translateY(0) rotate(6deg);
  }
  50% {
    -moz-transform: translateY(-30px) rotate(-8deg);
  }
}
@-o-keyframes balloon2 {
  0%,
  100% {
    -o-transform: translateY(0) rotate(6deg);
  }
  50% {
    -o-transform: translateY(-30px) rotate(-8deg);
  }
}
@keyframes balloon2 {
  0%,
  100% {
    transform: translateY(0) rotate(6deg);
  }
  50% {
    transform: translateY(-30px) rotate(-8deg);
  }
}
/* BAllOON 0*/
@-webkit-keyframes balloon3 {
  0%,
  100% {
    -webkit-transform: translate(0, -10px) rotate(6eg);
  }
  50% {
    -webkit-transform: translate(-20px, 30px) rotate(-8deg);
  }
}
@-moz-keyframes balloon3 {
  0%,
  100% {
    -moz-transform: translate(0, -10px) rotate(6eg);
  }
  50% {
    -moz-transform: translate(-20px, 30px) rotate(-8deg);
  }
}
@-o-keyframes balloon3 {
  0%,
  100% {
    -o-transform: translate(0, -10px) rotate(6eg);
  }
  50% {
    -o-transform: translate(-20px, 30px) rotate(-8deg);
  }
}
@keyframes balloon3 {
  0%,
  100% {
    transform: translate(0, -10px) rotate(6eg);
  }
  50% {
    transform: translate(-20px, 30px) rotate(-8deg);
  }
}
/* BAllOON 3*/
@-webkit-keyframes balloon4 {
  0%,
  100% {
    -webkit-transform: translate(10px, -10px) rotate(-8eg);
  }
  50% {
    -webkit-transform: translate(-15px, 20px) rotate(10deg);
  }
}
@-moz-keyframes balloon4 {
  0%,
  100% {
    -moz-transform: translate(10px, -10px) rotate(-8eg);
  }
  50% {
    -moz-transform: translate(-15px, 10px) rotate(10deg);
  }
}
@-o-keyframes balloon4 {
  0%,
  100% {
    -o-transform: translate(10px, -10px) rotate(-8eg);
  }
  50% {
    -o-transform: translate(-15px, 10px) rotate(10deg);
  }
}
@keyframes balloon4 {
  0%,
  100% {
    transform: translate(10px, -10px) rotate(-8eg);
  }
  50% {
    transform: translate(-15px, 10px) rotate(10deg);
  }
}
h1 {
  position: relative;
  top: 200px;
  text-align: center;
  color: white;
  font-size: 3.5em;
}
.button-3:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-3:hover {
  background-color: #4376b9;
}

.button-3:focus {
  box-shadow: rgba(50, 164, 221, 0.4) 0 0 0 3px;
  outline: none;
}

.button-3:disabled {
  background-color: #2ca7ef;
  border-color: rgba(27, 31, 35, 0.1);
  color: rgba(255, 255, 255, 0.8);
  cursor: default;
}

.button-3:active {
  background-color: #298e46;
  box-shadow: rgba(20, 70, 32, 0.2) 0 1px 0 inset;
}
/*
input:checked+.slide {
  background: #444;
  opacity: 0.8;
}
input:focus+.slide {
  box-shadow: 0 0 1px #2196f3;
}
input:checked+.slide:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}
*/
.slide.round {
  border-radius: 33px;
}

.slide.round:before {
  border-radius: 50%;
}

.collum-container {
  display: flex;
  flex-direction: column;
  color: black;
  background-color: var(--darkest);
  width: 15vw;
  height: 70vh;
  text-align: center;
  align-items: center;
}

.row {
  position: relative;
  text-align: center;
  background-color: var(--pink);
  top: 50px;
  border-radius: 10%;
  width: 70%;
  transition: all 0.3s;
  margin: 10px;
}

.row:hover {
  background-color: var(--purple);
  cursor: pointer;
  transform: scale(1.1);
}

div > a {
  text-decoration: none;
  color: black;
}

.commands {
  margin: 100px;
}

.cmdh {
  font-size: 4rem;
  position: absolute;
  top: 90%;
  left: 40%;
}

div.topic_holder {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 5rem;
}

div#commands_title > h1 {
  font-size: 2.5rem;
}

a.command_topic {
  background-color: #5e617d;
  color: #fff;

  padding: 1rem;

  border-radius: 8.5px;

  transition: text-shadow 250ms ease-in-out;
}

@media (prefers-reduced-motion) {
  a.command_topic {
    transition: none;
  }
  .hidden {
    transition: none;
  }
}

a.command_topic:hover {
  text-shadow: -5px -5px 5px #42a5f5, 5px 5px 5px #42a5f5;
}

hr.commands_hr {
  width: 110%;
  transform: translateX(-5%);

  margin: 1rem;
  border: none;
  border-top: 10px solid #6b74c8;
  border-radius: 50px;
}

hr.commands_hrr {
  width: 110%;
  transform: translateX(-5%);
  margin: 1rem;
  border: none;
  border-top: 1px solid #6b74c8;
  border-radius: 50px;
}

section.commands div h2 {
  font-weight: 900;
  color: #8b94e6;
}

div.sbar_holder {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem;
}

div.sbar_holder * {
  margin: 1rem 0;
  padding: 0.5rem;
}

div.sbar_holder > input[name="search"] {
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;

  color: #fff;
  background-color: #2c3268;

  border: none;
  border-radius: 5px;
}

.changelog {
  align-items: center;
}

.bn31 {
  background-image: linear-gradient(to right, #006175 0%, #00a950 100%);
  border-radius: 40px;
  box-sizing: border-box;
  color: #00a84f;
  display: block;
  height: 25px;
  font-size: 1em;
  padding: 4px;
  position: relative;
  text-decoration: none;
  width: 5em;
  z-index: 2;
}

.bn31:hover {
  color: #fff;
}

.bn31 .bn31span {
  align-items: center;
  background: #0e0e10;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  height: 100%;
  transition: background 0.5s ease;
  width: 100%;
}

.bn31:hover .bn31span {
  background: transparent;
}
.bn54 {
  position: relative;
  outline: none;
  text-decoration: none;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;

  height: 45px;
  width: 130px;
  opacity: 1;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.6);
}

.bn54 .bn54span {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #000000;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.7px;
}

.bn54:hover {
  animation: bn54rotate 0.7s ease-in-out both;
}

.bn54:hover .bn54span {
  animation: bn54storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

@keyframes bn54rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

a {
  text-decoration: none;
  color: var(--light);
  transition: all 200ms ease-in-out;
}

a:hover {
  color: var(--pink);
  text-decoration: underline;
}

ul.li {
  text-align: center;
}

.info-container {
  position: absolute;
  top: 100%;
  left: 30%;
  background-color: black;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
}

.info {
  border: 2px solid var(--light);
  font-family: "Inter", sans-serif;
}

.content {
  width: 600px;
  margin: 50px auto;
  background-color: white;
}
.main-buttons {
  margin: 0 5px;
}
.main-buttons button {
  margin: 0 auto;
}
.main {
  text-align: center;
  color: #000;
  background-color: #fff;
  width: 50%;
  margin: 0 auto;
  font-family: Monospace, Verdana, sans-serif;
}
.space {
  width: 600px;
  margin: 50px auto;

  padding: 10px;
}
