/* CSS for cafedeadbeef.com - Terminal Edition */

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

body {
    font-family: 'Courier New', 'Courier', monospace;
    background: #000000;
    color: #00ff00;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    width: 100%;
    text-align: center;
}

header {
    padding: 20px 10px;
    text-align: center;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    letter-spacing: 2px;
}

.tagline {
    font-size: 0.9rem;
    color: #00cc00;
    opacity: 0.8;
}

main {
    padding: 20px 10px;
}

.ascii-art {
    margin: 20px auto;
    overflow-x: auto;
    overflow-y: hidden;
}

.ascii-art pre {
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 0.7rem;
    line-height: 1.1;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    white-space: pre;
    margin: 0;
    padding: 20px;
    display: inline-block;
    text-align: left;
}

.info {
    margin-top: 40px;
    text-align: center;
}

.subtitle {
    font-size: 0.9rem;
    color: #00cc00;
    opacity: 0.7;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .ascii-art pre {
        font-size: 0.6rem;
    }
}

@media (max-width: 900px) {
    .ascii-art pre {
        font-size: 0.5rem;
    }

    header h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .ascii-art pre {
        font-size: 0.35rem;
        line-height: 1.0;
        padding: 10px;
    }

    header h1 {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 0.7rem;
    }
}
