* {
  margin: 0;
  padding: 0;
}
:root {
  --border-size: 0.125rem;
  --duration: 250ms;
  --ease: cubic-bezier(0.215, 0.61, 0.355, 1);
  --font-family: monospace;
  --color-primary: white;
  --color-secondary: black;
  --color-tertiary: dodgerblue;
  --shadow: rgba(0, 0, 0, 0.1);
  --space: 1rem;
}
* {
  box-sizing: border-box;
}
.container {
  position: fixed;
  bottom: 0;
  margin-left: 140px;
  margin-bottom: 20px;
  width: 100%;
}
.glow-on-hover {
  width: 220px;
  height: 50px;
  margin-right: 40px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.glow-on-hover:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000;
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
}
body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: Monospace;
  font-size: 13px;
  line-height: 24px;
  overscroll-behavior: none;
}

a {
  color: white;
}

#info {
  position: absolute;
  font-size: 10px;
  top: 0px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  text-align: left;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 1; /* TODO Solve this in HTML */
}

a,
button,
input,
select {
  pointer-events: auto;
}

.dg.ac {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 2 !important; /* TODO Solve this in HTML */
}

#overlay {
  position: absolute;
  font-size: 16px;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.7);
}

#overlay button {
  background: transparent;
  border: 0;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 4px;
  color: #ffffff;
  padding: 12px 18px;
  text-transform: uppercase;
  cursor: pointer;
}

#notSupported {
  width: 50%;
  margin: auto;
  background-color: #f00;
  margin-top: 20px;
  padding: 10px;
}

.title {
  position: absolute;
  z-index: 3;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  left: 0;
  right: 0;
  text-align: center;
}

.description {
  position: absolute;
  z-index: 3;
  margin-left: 950px;
  margin-right: left;
  margin-top: 450px;
  left: 0;
  right: 0;
  text-align: center;
}

.description_1 {
  position: absolute;
  z-index: 3;
  margin-left: 50px;
  margin-right: left;
  margin-top: 650px;
  left: 0;
  right: 0;
  text-align: center;
}

.lbl {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  bottom: 0px;
  z-index: 100;
  text-shadow: #000 1px 1px 1px;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 1em;
}

#lbl_left {
  text-align: left;
  left: 0px;
}

#lbl_right {
  text-align: left;
  right: 0px;
}

.g {
  color: #aaa;
}

.c {
  color: #fa0;
}
