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

html {
  scroll-behavior: smooth;
}

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

h1 {
  text-align: center;
}

div, input, button {
  font-family: "Roboto Mono", monospace;
  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: black;
}

kbd {
  background-color: #eee;
  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", monospace;
  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: 0 0 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: black;
  color: black;
}

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

.progress-container {
  padding: 0;
}

/* 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 #000000;
  -webkit-box-shadow: inset 0 0 15px 7px #000000;
  box-shadow: inset 0 0 15px 7px #000000;
}

.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 #000000;
  -webkit-box-shadow: inset 0 0 8px 3px #000000;
  box-shadow: inset 0 0 8px 3px #000000;
}

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 white;
  padding: 10px;
}
tr.blankrow {
  height: 30px;
  border: 0;
}
tbody {
  border: 1px solid white;
}

/* separator */
hr {
  border-top: 2px solid #AAAAAA;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  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: border-box;
  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;
}
.hidden-link, .hidden-link-hover {
  text-decoration: none;
  background-color: transparent;
}
.hidden-link-hover:hover {
  text-decoration: underline;
  background-color: transparent;
}

/* 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 #FFFFFF;
  margin-bottom: .5em;
}

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

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

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

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

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

/* hi */