
body {
    background-color: #66007a;
    color: white;
    font-family: Verdana;
    overflow: hidden;
}
.fixed-bottom-right {
    position: fixed; /* Positions relative to the browser viewport */
    bottom: 0;
    right: 0;
    padding: 10px;
    color: white;
    background-color: #66007a;
}
.bound {
    color: white;
    background-color: black;
}
.map {
    color: white;
    background-color: black;
    font-size: 32px;;
    font-weight: bold;
}
.tl {
    table-layout: auto;
    width: auto;
    border: 1px solid white;
}
.mapelement {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    font-size: 32px;
    display: flex;
}
.submap {
    color: white;
    background-color: black;
    font-size: 16px;
    font-weight: bold;
    width: fit-content;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    text-align: left;
}
.bottom-left {
    color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 60px;
    font-family: Verdana;
    z-index: 1;
    transform: translateY(60px) rotate(180deg);
}
.design-shade {
    color: black;
    position: fixed;
    top: 0;
    left: 50px;
    font-size: 150px;
    line-height: 0.955;
    z-index: -1;
}
.rectangle {
    height: 100px;
    width: 100%;
    background-color: black;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.right-text {
    top: 0;
    right: 0;
    font-family: monospace;
    text-align: end;
}
.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;
}
a {
    color: #66007a;
    background-color: black;
}
a:hover {
    color: yellow;
}
