
body {
  background-color: #e7fa19;
  color: black;
  font-family: Verdana;
  font-size: 1.2vmax;
  overflow: hidden;
}
.container {
  position: absolute;
  width: 100dvw;
  height: 100dvh;
}
.glitch {
  position: relative;
  top: 3px;
  left: 32px;
}
.fixed-bottom-right {
  position: absolute; /* Positions relative to the browser viewport */
  bottom: 0;
  right: 0;
  padding: 10px;
  font-size: 4vmax;
  color: #e7fa19;
  background-color: black;
}
.bound {
  color: #e7fa19;
  background-color: black;
}
.dings-black {
  font-family: Webdings;
  color: #e7fa19;
  background-color: black;
}
.top-right {
  position: absolute;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: black;
  top: 0;
  right: 0;
  font-size: 1vmax;
  font-family: monospace;
  font-weight: bold;
  text-align: right;
  z-index: -1;
}
.blink {
  animation: 1s infinite blink-animation;
}

@keyframes blink-animation {
  0%, 50% {
    opacity: 0;
  }
  51%, 100% {
    opacity: 1;
  }
}
.indent20 {
  padding-left: 2vw;
}
a {
  color: black;
}
a:hover {
  color: #e7fa19;
  background-color: black;
}
@media screen and (orientation: portrait) {
  body {
    font-size: 1.2dvh;
  }
  .container {
    width: 99dvw;
  }
  .top-right {
    font-size: 1dvh;
  }
  .fixed-bottom-right {
    font-size: 3vh;
  }
}