.matrix-text {
    position: relative;
    font-size: 20px; /* Font size */
    white-space: nowrap;
    margin-top: 20px; /* Add spacing between text and Matrix effect */
}

.falling-char {
    position: fixed;
    top: 50px; /* Start above the viewport */
    left: 0;
    color: #00fff9; /* Matrix text color */
    animation: fall 100s linear ; /* Animation duration and timing */
}

@keyframes fall {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh); /* Move to the bottom of the viewport */
        opacity: 0; /* Fade out */
    }
}
