body {
    background-color: black;
    overflow: hidden; /* Скрыть полосы прокрутки */
    margin: 0;
}

.matrix-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Заполнить весь экран */
}

.matrix-column {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    color: #0f0;
    font-family: monospace;
    font-size: 20px;
    white-space: nowrap;
}

.matrix-char {
    animation: fall 2s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}