body {
    background-color: black;
    color: white;
    display: flex;
    height: 100vh;
    margin: 0;
}
p {
    font-size: 24px;
    position: absolute;
}
.particle {
    position: absolute;
    font-size: 20px; /* Adjust size as needed */
    animation: fall 2s linear;
}
@keyframes fall {
    from {
        transform: translateY(-10px);
    } to {
        transform: translateY(calc(100vh + 10px));
    }
}
