body {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden; /* Hide overflowing particles */
}

#ascii-art {
    text-align: center;
    white-space: pre;
    position: relative; /* For particle positioning */
}

.char {
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.particle {
    position: absolute;
    transition: transform 2s ease-out, opacity 2s ease-out;
}