body {
    font-family: 'Impact', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.main-content {
    text-align: center;
    transform: rotate(-5deg);
}

h1 {
    font-size: 8vw;
    text-transform: uppercase;
    line-height: 1.2;
    color: #f0f0f0;
    text-shadow: 
        0 0 5px #ff00de,
        0 0 10px #ff00de,
        0 0 20px #ff00de,
        0 0 40px #00aaff,
        0 0 60px #00aaff,
        0 0 80px #00aaff,
        0 0 100px #00aaff;
    animation: flicker 2s infinite alternate;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 4px #fff,
            0 0 10px #ff00de,
            0 0 20px #ff00de,
            0 0 40px #00aaff,
            0 0 80px #00aaff,
            0 0 120px #00aaff,
            0 0 180px #00aaff;
    }
    20%, 24%, 55% {        
        text-shadow: none;
    }
}
