body {
    font-family: 'Courier New', monospace;
    background-color: #000;
    color: #0f0;
}

.glitch {
    position: relative;
    font-weight: bold;
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
        -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
        0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    animation: glitch 500ms infinite;
    font-size: calc(2rem + 3vw);
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
            0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }

    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
            0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }

    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }

    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }

    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
            0.05em 0 0 rgba(0, 255, 0, 0.75),
            0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }

    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
            0.05em 0 0 rgba(0, 255, 0, 0.75),
            0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }

    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
            -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
            -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

.typewriter {
    overflow: hidden;
    border-right: 0.15em solid #0f0;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.15em;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    font-size: calc(0.8rem + 1vw);
    max-width: 90%;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: #0f0;
    }
}

.hacker-btn {
    background-color: transparent;
    border: 1px solid #0f0;
    color: #0f0;
    transition: all 0.3s ease;
}

.hacker-btn:hover {
    background-color: #0f0;
    color: #000;
    box-shadow: 0 0 10px #0f0;
}

#info-box {
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid #0f0;
    max-width: 90%;
    margin: 0 auto;
    font-size: calc(0.7rem + 0.5vw);
}

#info-box ul {
    padding-left: 1rem;
}

#info-box li {
    margin-bottom: 0.5rem;
}

footer p {
    font-size: calc(0.6rem + 0.3vw);
}

@media (max-width: 576px) {
    .glitch {
        font-size: 2rem;
    }

    .typewriter {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }

    #info-box {
        font-size: 0.8rem;
    }

    footer p {
        font-size: 0.7rem;
    }
}

/* Add this to the end of your existing styles.css file */

#ascii-art {
    font-family: monospace;
    white-space: pre;
    font-size: 0.6rem;
    line-height: 1.2;
    color: #fff;
    /* Changed from #0f0 to #fff for white color */
    max-width: 100%;
    overflow-x: auto;
}

@media (min-width: 768px) {
    #ascii-art {
        font-size: 0.8rem;
    }
}

@media (min-width: 1200px) {
    #ascii-art {
        font-size: 1rem;
    }
}