body {
    margin: 0;
    overflow: hidden;
    background: black;
    color: lime;
    font-family: monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}
a {
    text-decoration: none;
    color: grey;
}
a:hover {
    color: white;
}
#matrixCanvas {
    position: absolute;
    top: 0;
    left: 0;
}
#wormCanvas {
    border-radius: 10px;
    text-align: center;
    z-index: 10;
    backdrop-filter: blur(4px);
    border: 3px solid green;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.4);
}
#heading, #info {
    z-index: 100;
    margin: 0;
    display: flex;
    justify-content: space-between;
    width: 720px;
    font-size: 1em;
}
#heading div, #info div {
    width: 50%;
    display: flex;
    justify-content: center;
}
#heading p {
    border-radius: 10px 10px 0 0;
}
#info p {
    border-radius: 0 0 10px 10px;
}
#debugger {
    font-size: 0.8em;
}
#heading p, #info p {
    margin: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    padding: 5px;
    width: fit-content;
}
#heading div:first-child, #info div:first-child {
    justify-content: left;
}
#heading div:last-child, #info div:last-child {
    justify-content: right;
}
#debugger {
    position: absolute;
    left: calc(50% + 370px);
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    line-height: 15px;
    display: none;
}

#textBox, #detailBox, #patchNotes {
    position: absolute;
    transform: translateY(-50%); /* Perfekte Zentrierung */
    left: 50%; /* Mitte des Canvas */
    transform: translateX(-50%); /* Perfekte Zentrierung */
    font-size: 1.2em;
    font-family: Monospace;
    color: grey;
    z-index: 11;
    text-align: center;
    line-height: 1.36em;
    width: 700px;
}
#detailBox, #patchNotes {
    text-align: left;
    display: none;
    width: 600px;
}
#textBox, #detailBox p, #patchNotes p {
    text-align: center;
    line-height: 1.5em;
}
.green {color: green}
.red {color: darkred}
.yellow {color: darkgoldenrod}
.white {color: white}

#playText {
    color: green;
    font-size: 3em;
    font-weight: bold;
    z-index: 12;
}
#playText:hover {
    color: lime;
    cursor: pointer;
}

.link {
    font-weight: bold;
    cursor: pointer;
}
.link:hover {
    color: white
}
.link.green:hover {
    color: lime;
}
.link.yellow:hover{
    color: yellow;
}
.link.red:hover {color: red}


@media only screen and (max-width: 1000px) {
    #debugger {
        display: none;
    }
}
@media only screen and (max-width: 750px) {
    #textBox, #detailBox, #patchNotes {
        width: calc(100vw - 50px);
        font-size: 1.1em;
    }
    #debuggerBtn {
        display: none;
    }
    #wormCanvas {
        background-color: rgba(0, 0, 0, 0.1);
    }
}