* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    height: 100vh;
    background-color: black;
    font-family: 'Courier New', monospace;
}

#matrix-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.matrix-line {
    position: absolute;
    left: 20px; /* Abstand zwischen den „Schlangen“ */
    color: green;
    font-size: 20px;
    white-space: nowrap;
    z-index: 1;
    animation: fall 1s infinite linear;
}

@keyframes fall {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}