body {
    margin: 0;
    overflow: hidden;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: monospace;
}

.emoji-container {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.emoji-line {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.emoji-line div {
    display: flex;
    flex-direction: column;
    animation: scroll linear infinite;
    animation-duration: 20s; /* Adjust speed here */
}

.emoji {
    font-size: 1rem; /* Emoji size */
    padding: 5px;
    text-align: center;
}
