* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.title {
    font-size: clamp(3rem, 15vw, 10rem);
    font-weight: 900;
    letter-spacing: 0.5rem;
    text-align: center;
    text-transform: uppercase;
    color: #ff0000;
    text-shadow:
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 30px #ff0000,
        0 0 40px #8b0000,
        0 0 70px #8b0000,
        0 0 80px #8b0000,
        0 0 100px #8b0000,
        0 0 150px #8b0000;
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 10px #ff0000,
            0 0 20px #ff0000,
            0 0 30px #ff0000,
            0 0 40px #8b0000,
            0 0 70px #8b0000,
            0 0 80px #8b0000,
            0 0 100px #8b0000,
            0 0 150px #8b0000;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}
