body {
  background-color: #f54242;
  color: white;
  font-family: Verdana;
  font-weight: bold;
  overflow: hidden;
  cursor: default;
}
.sitemap {
  font-family: "Milker";
  font-size: 7dvh;
  margin: 0 0 0 0;
  letter-spacing: -0.6dvh;
  padding: 0 0 0 0;
  line-height: 80%;
  background-color: transparent;
  overflow: hidden;
}
.fixed-bottom-right {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 10px;
  color: black;
  background-color: #f54242;
}
.bound {
  color: #f54242;
  background-color: white;
}
.top-left {
  transform: rotate(90deg);
  transform-origin: left bottom;
  color: black;
  background-color: #f54242;
  position: fixed;
  top: 0;
  left: 0;
  font-family: monospace;
  font-weight: bold;
  text-align: end;
  z-index: 1;
}
.top-right {
  position: fixed;
  top: 0;
  right: 0;
  font-family: monospace;
  font-size: 120pt;
  line-height: 0.7;
}
.top-right-text {
  position: fixed;
  top: 0;
  right: 0;
  font-family: "Courier New", monospace;
  font-size: 90pt;
  line-height: 0.8;
}
.giant-v {
  position: fixed;
  transform: rotate(30deg);
  top: -1000px;
  right: 0;
  font-family: Verdana;
  font-size: 2000pt;
  z-index: -2;
}
.listening-block {
  z-index: -1;
}
.blink {
  animation: 1s infinite blink-animation;
}

@keyframes blink-animation {
  0%,
  50% {
    opacity: 0;
  }
  51%,
  100% {
    opacity: 1;
  }
}
.indent100 {
  position: fixed;
  left: 100px;
}
.newalign {
  margin: 0 0 0 20px;
}
a {
  color: #f54242;
  background-color: white;
}
a:hover {
  color: white;
  background-color: black;
  cursor: pointer;
}
.h1 {
  background-color: transparent;
  color: white;
  text-decoration: none;
}
.h1:hover {
  background-color: transparent;
  color: white;
  text-decoration: none;
}
.content {
  height: 30vh;
  overflow-x: scroll;
  scrollbar-color: white;
  scrollbar-base-color: white;
}
@media screen and (orientation: portrait) {
  .sitemap {
    font-size: 8.5dvw;
  }
  .content {
    height: 40dvh;
    font-size: 1.3vh;
  }
}