* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: #000;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terminal-window {
    background: #000;
    border: 2px solid #fff;
    width: 95%;
    max-width: 1000px;
}

.terminal-header {
    background: #fff;
    color: #000;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000;
}

.terminal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: white;
}

.terminal-body {
    padding: 60px 40px;
    background: #000;
}

.ascii-art {
    color: #fff;
    font-size: 20px;
    line-height: 1.1;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    white-space: pre;
}

@media (max-width: 768px) {
    .ascii-art {
        font-size: 12px;
    }
    
    .terminal-window {
        width: 98%;
    }
    
    .terminal-body {
        padding: 40px 20px;
    }
}