@keyframes matrix-fall {
    0% { transform: translateY(-100%); opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

.matrix-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    font-family: 'Courier New', Courier, monospace;
    color: #00ff00; /* Zelena boja */
    font-size: 24px;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    z-index: 9999;
}

.matrix-container2 {
    position: fixed;
    top: 0;
    left: 10;
    width: 100%;
    height: 100%;
    pointer-events: none;
    font-family: 'Courier New', Courier, monospace;
    color: #00ff00; /* Zelena boja */
    font-size: 24px;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    z-index: 9999;
}

.matrix-line {
    display: flex;
    flex-direction: column;
    animation: matrix-fall 3s linear infinite;
}

.matrix-letter {
    animation: matrix-fall 3s linear infinite;
}

