body {
    background: #181E4C;
    overflow: hidden;
    font-size: 13.5px;
}

.falling-text {
    position: absolute;
    color: #e56697;
    white-space: nowrap;
    animation: fall linear infinite;
}

@keyframes fall {
    from { transform: translateY(-100vh); }
    to { transform: translateY(100vh); }
}