@import url('https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap');

/* */

:root {
  --colorsep1: rgba(0,30,255,0.5);
  --colorsep2: rgba(255,0,80,0.5);
  --white: #eeeeee;
  --black: #111111;
  --c1: hsl(160, 71%, 45%);
  --c1-light: hsl(160, 85%, 72%);
  --c1-dark: hsl(160, 90%, 21%);
  --c2: hsl(15, 71%, 45%);
  --c2-light: hsl(15, 85%, 72%);
  --c2-dark: hsl(15, 90%, 21%);
  --selection: #0099ff;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: "Roboto Mono";
  font-size: 14px;
  text-align: center;
}

h1 {
  text-align: center;
}

div, input, button, textarea, select {
  font-family: "Roboto Mono";
  text-align: center;
}

.text-tiny {
  font-size: 10px;
}
.text-small {
  font-size: 12px;
}
.text-regular {
  font-size: 14px;
}
.text-medium {
  font-size: 16px;
}
.text-large {
  font-size: 18px;
}
.text-huge {
  font-size: 24px;
}
.text-gigantic {
  font-size: 28px;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

q {
  display: inline;
  color: var(--black);
}

kbd {
  background-color: var(--white);
  border-radius: 3px;
  border: 1px solid #b4b4b4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .2), 0 2px 0 0 rgba(255, 255, 255, .7) inset;
  color: #333;
  display: inline-block;
  font-family: "Roboto Mono";
  font-size: .85em;
  font-weight: 600;
  line-height: 1;
  padding: 2px 4px;
  white-space: nowrap;
}

.hidden {
  display: none;
}
.antiselect {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pointer {
  cursor: pointer;
}
.nice:hover {
  text-shadow: 0px 0px 10px #FFFFFF !important;
}

.link-left {
  position: absolute;
  left: 21%;
  top: 15px;
}

.link-right {
  position: absolute;
  right: 21%;
  top: 15px;
}

.clue {
  /* no, not a clue for you */
  background-color: var(--black);
  color: var(--black);
}

.progress-container:before, .progress-container:after {
  content: "";
  display: table;
  clear: both;
}

.progress-container {
  padding: none;
  border: solid var(--white) 1px;
}

/* canvas */
canvas {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* images */

img {
  pointer-events: auto;  
}

img-container img {
  display: block;
  z-index: -1;
  position: relative;
  pointer-events: auto;
  visibility: visible;
  
  border-radius: 15px;
}

img-container {
  display: inline-block;
  visibility: visible;
  pointer-events: auto;
  
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
  box-sizing: border-box;
  -moz-box-shadow: inset 0 0 15px 7px var(--black);
  -webkit-box-shadow: inset 0 0 15px 7px var(--black);
  box-shadow: inset 0 0 15px 7px var(--black);
}

.img-container-select {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.img-container-small {
  -moz-box-shadow: inset 0 0 8px 3px var(--black);
  -webkit-box-shadow: inset 0 0 8px 3px var(--black);
  box-shadow: inset 0 0 8px 3px var(--black);
}

img-container.img-container-small img {
  border-radius: 5px;
}

/* tables */
table {
  border-spacing: 0;
  z-index: -100;
}
table.hidden {
  border-collapse: collapse;
  border-style: hidden;
}
table td, table th {
  border: 0px solid var(--white);
  padding: 10px;
}
tr.blankrow {
  height: 30px;
  border: 0;
}
tbody {
  border: 1px solid var(--white);
}

/* separator */
hr {
  border-top: 2px solid #AAAAAA;
  border-bottom: 0px;
  border-left: 0px;
  border-right: 0px;
  margin: 30px 20px;
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 20px;
}
.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 2px solid #AAAAAA;
}
.separator:not(:empty)::before {
  margin-right: .25em;
}
.separator:not(:empty)::after {
  margin-left: .25em;
}

/* rainbow */
.rainbowbox {
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.2);
}
.rainbow {
  background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow_animation 5s ease-in-out infinite;
  background-size: 400% 100%;
  padding: 0;
  margin: 0;
}
@keyframes rainbow_animation {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
}

/* links */
a:link {
  color: #FFFFFF;
}
a:hover {
  color: #AAAAAA;
}
a:visited {
  color: #EEEEEE;
}
a:link:hover {
  color: #AAAAAA;
}
a:visited:hover {
  color: #AAAAAA;
}
a:active {
  color: #CCCCCC;
}
a[disabled] {
  color: #CCCCCC !important;
}
a[disabled]:hover {
  cursor: default;
  text-shadow: none !important;
}
.hidden-link, .hidden-link-hover {
  text-decoration: none;
  background-color: transparent;
}
.hidden-link-hover:hover {
  text-decoration: underline;
  background-color: transparent;
}

/* crt */

.scanlines::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: -10000px;
  right: -10000px;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

.flickerfast::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: -10000px;
  right: -10000px;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.5s infinite;
}

.flicker::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: -10000px;
  right: -10000px;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 3s infinite;
}

body.flicker {
  background-color: black;
}

@keyframes flicker {
  0% {opacity: 0.27861;}
  5% {opacity: 0.34769;}
  10% {opacity: 0.23604;}
  15% {opacity: 0.90626;}
  20% {opacity: 0.18128;}
  25% {opacity: 0.83891;}
  30% {opacity: 0.65583;}
  35% {opacity: 0.67807;}
  40% {opacity: 0.26559;}
  45% {opacity: 0.84693;}
  50% {opacity: 0.96019;}
  55% {opacity: 0.08594;}
  60% {opacity: 0.20313;}
  65% {opacity: 0.71988;}
  70% {opacity: 0.53455;}
  75% {opacity: 0.37288;}
  80% {opacity: 0.71428;}
  85% {opacity: 0.70419;}
  90% {opacity: 0.7003;}
  95% {opacity: 0.36108;}
  100% {opacity: 0.24387;}
}

.colorsep {
  animation: textShadow 1.6s infinite;
}

@keyframes textShadow {
  0% {text-shadow: 0.4389924193300864px 0 1px var(--colorsep1), -0.4389924193300864px 0 1px var(--colorsep2), 0 0 3px;}
  5% {text-shadow: 2.7928974010788217px 0 1px var(--colorsep1), -2.7928974010788217px 0 1px var(--colorsep2), 0 0 3px;}
  10% {text-shadow: 0.02956275843481219px 0 1px var(--colorsep1), -0.02956275843481219px 0 1px var(--colorsep2), 0 0 3px;}
  15% {text-shadow: 0.40218538552878136px 0 1px var(--colorsep1), -0.40218538552878136px 0 1px var(--colorsep2), 0 0 3px;}
  20% {text-shadow: 3.4794037899852017px 0 1px var(--colorsep1), -3.4794037899852017px 0 1px var(--colorsep2), 0 0 3px;}
  25% {text-shadow: 1.6125630401149584px 0 1px var(--colorsep1), -1.6125630401149584px 0 1px var(--colorsep2), 0 0 3px;}
  30% {text-shadow: 0.7015590085143956px 0 1px var(--colorsep1), -0.7015590085143956px 0 1px var(--colorsep2), 0 0 3px;}
  35% {text-shadow: 3.896914047650351px 0 1px var(--colorsep1), -3.896914047650351px 0 1px var(--colorsep2), 0 0 3px;}
  40% {text-shadow: 3.870905614848819px 0 1px var(--colorsep1), -3.870905614848819px 0 1px var(--colorsep2), 0 0 3px;}
  45% {text-shadow: 2.231056963361899px 0 1px var(--colorsep1), -2.231056963361899px 0 1px var(--colorsep2), 0 0 3px;}
  50% {text-shadow: 0.08084290417898504px 0 1px var(--colorsep1), -0.08084290417898504px 0 1px var(--colorsep2), 0 0 3px;}
  55% {text-shadow: 2.3758461067427543px 0 1px var(--colorsep1), -2.3758461067427543px 0 1px var(--colorsep2), 0 0 3px;}
  60% {text-shadow: 2.202193051050636px 0 1px var(--colorsep1), -2.202193051050636px 0 1px var(--colorsep2), 0 0 3px;}
  65% {text-shadow: 2.8638780614874975px 0 1px var(--colorsep1), -2.8638780614874975px 0 1px var(--colorsep2), 0 0 3px;}
  70% {text-shadow: 0.48874025155497314px 0 1px var(--colorsep1), -0.48874025155497314px 0 1px var(--colorsep2), 0 0 3px;}
  75% {text-shadow: 1.8948491305757957px 0 1px var(--colorsep1), -1.8948491305757957px 0 1px var(--colorsep2), 0 0 3px;}
  80% {text-shadow: 0.0833037308038857px 0 1px var(--colorsep1), -0.0833037308038857px 0 1px var(--colorsep2), 0 0 3px;}
  85% {text-shadow: 0.09769827255241735px 0 1px var(--colorsep1), -0.09769827255241735px 0 1px var(--colorsep2), 0 0 3px;}
  90% {text-shadow: 3.443339761481782px 0 1px var(--colorsep1), -3.443339761481782px 0 1px var(--colorsep2), 0 0 3px;}
  95% {text-shadow: 2.1841838852799786px 0 1px var(--colorsep1), -2.1841838852799786px 0 1px var(--colorsep2), 0 0 3px;}
  100% {text-shadow: 2.6208764473832513px 0 1px var(--colorsep1), -2.6208764473832513px 0 1px var(--colorsep2), 0 0 3px;}
}

txt {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

/* details and summary */

details {
  border: 1px solid var(--white);
  border-radius: 4px;
  padding: .5em .5em 0;
  margin: 0px 0px;
}

summary {
  font-weight: bold;
  margin: -.5em -.5em 0;
  padding: .5em;
  margin: 0px 0px;
}

details[open] {
  padding: .5em;
}

details[open] summary {
  border-bottom: 1px solid var(--white);
  margin-bottom: .5em;
}

/* scrollbar styles */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  border: 1px solid var(--white);
  border-radius: 12px;
}

::-webkit-scrollbar-thumb {
  background: var(--white);  
  border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover {
  background: darkgrey;  
}

.blur {
  color: transparent;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}
kbd.blur {
  text-shadow: 0 0 5px rgba(0, 0, 0, 1);
}

input[type=button] {
  cursor: pointer;
  padding: 0.2em 0.6em;
  border-radius: 100px;
  transition: all 0.5s ease-out;
}

input[type=button]:disabled {
  cursor: no-drop;
}

input[type=button]:hover {
  font-size: 15px;
  font-size: max(15px, 1em);
  /* transform: rotate(2deg); */
  background-color: var(--c1-dark);
}

input[type=button]:disabled:hover {
  filter: blur(1px);
}

input[type=button]:not(:disabled):hover {
  font-size: 15px;
  font-size: max(15px, 1em);
  /* transform: rotate(2deg); */
  background-color: var(--c1);
}

input:not([type=button]):not([type=submit]):not([type=file]) {
  font-size: 14px;
  font-size: max(14px, 0.8em);
  padding: 0.2em 0.4em;
  background-color: var(--white);
  border: 3px solid var(--c1);
  border-radius: 100px;
  text-shadow: #00000000 0 0 0;
  transition: all 0.5s ease-out;
}

input:not([type=button]):not([type=submit]):not([type=file]):hover {
  color: var(--black);
}

input:not([type=button]):not([type=submit]):not([type=file]):focus {
  font-size: 16px;
  font-size: max(16px, 1em);
  border: 4px solid var(--c1-dark);
  /* transform: rotate3d(0.1, 0.1, 1, 2deg); */
  /* note: not using the normal rotate(2deg) because the cursor will magically vanish if i do that */
}

input:not([type=button]):not([type=submit]):not([type=file]):disabled {
  border: 0px solid var(--c1);
  background-color: rgba(239, 239, 239, 0.3);
  color: rgb(84, 84, 84);
  border-color: rgba(118, 118, 118, 0.3);
}

.centerbox {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 50px 50px;
  border: 2px solid white;
  max-width: 90%;
  max-height: 90%;
  /* overflow: auto; */
}

test17 {
  color: hsl(244, 89.5, 3.7);
}

/* hi */