@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);
  --black: #111111;
  --white: #eeeeee;
  --aaaaa: #aaaaaa;
  --selection: #0099ff;
}

html {
  scroll-behavior: smooth;
}

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

html,
body {
  overscroll-behavior-y: contain;
}

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

r {
  display: inline;
  color: var(--black);
  font-size: 5px;
}

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;
}
.emptyselect::selection {
  background-color: #0099fe;
  color: var(--selection);
}
.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%;
  z-index: 1;
}

/* 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 var(--aaaaa);
  border-bottom: 0px;
  border-left: 0px;
  border-right: 0px;
  margin: 30px 20px;
}

/* 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: var(--white);
}
a:hover {
  color: var(--aaaaa);
}
a:visited {
  color: var(--white);
}
a:link:hover {
  color: var(--aaaaa);
}
a:visited:hover {
  color: var(--aaaaa);
}
a:active {
  color: var(--white);
}
.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;
}

@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 #FFFFFF;
  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 var(--black);
}

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

.lowercase {
  text-transform: lowercase;
}

elzzup/number/ {
  color: rgb(49, 65, 89); /* -voting */
}

*::selection {
  background-color: var(--selection);
}

html {
  width: 100%;
  height: 100%;
  filter: invert(1);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.flip {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.flip.nice {
  display: inline-block;
  color: white;
}

table {
  margin: 0px auto;
}

.notification-box {
  display: block;
  position: fixed;
  left: 2vw;
  bottom: 2vw;
  padding: 0;
  min-width: max(75px, 7.5vw);
  max-width: max(200px, 20vw);
  max-height: 90vh;
  overflow: hidden;
  z-index: 99;
  background-color: var(--black);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.notification {
  position: relative;
  top: 100px;
  padding: 10px 10px;
  margin: 10px 10px;
  border: 2px solid var(--white);
  border-radius: 10px;
}

.achievement-box {
  max-width: 80vw;
  padding: 25px 5vw;
  margin: 0 auto;
  overflow: auto;
  text-align: justify;
  text-align-last: justify;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.achievement {
  display: inline-block;
  width: 64px;
  height: 64px;
  margin: 10px 10px;
  border: 2px solid var(--white);
  border-radius: 10px;
  background-color: var(--black);
}

#tooltip {
  position: absolute;
  width: 150px;
  padding: 10px;
  background-blend-mode: multiply;
  background-color: var(--black);
  background-color: red;
  visibility: hidden;
  z-index: 100;
  transition: 0.5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* dne */