:root {
    --bg-color: #000;
    --text-color: #DE7356;
    --font-main: 'IBM Plex Mono', monospace;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    margin: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.ascii-art {
    font-size: 0.42vw;
    line-height: 1;
    white-space: pre;
    font-weight: bold;
    display: inline-block;
    text-align: left;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    opacity: 0.9;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }
}
