@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

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

body {
    font-family: 'Roboto Mono', monospace;
    background: #ffffff;
    color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
}

h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.terminal-container {
    width: 80%;
    max-width: 900px;
    background: #000000;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#terminal {
    height: 420px;
}

#terminal .xterm-viewport {
    overflow-y: auto !important;
}

footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .terminal-container {
        width: 95%;
    }

    #terminal {
        height: 370px;
    }

    h1 {
        margin-bottom: 1.5rem;
    }

    footer {
        font-size: 0.8rem;
    }
}