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

body {
    background: #202123;

    color: #e8e8e8;

    font-family: "JetBrains Mono", monospace;
    font-size: 14px;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding: 80px 60px;
}

.terminal {
    width: 100%;
    max-width: 900px;
}

#output {
    white-space: pre-wrap;
    line-height: 1.8;
}

.command {
    color: #d97757;
}

.success {
    color: #7fc47f;
}

.error {
    color: #e06c75;
}

.input-container {
    display: none;
    margin-top: 8px;
}

.input-prefix {
    color: #d97757;
    margin-right: 8px;
}

#terminal-input {
    background: transparent;
    border: none;
    outline: none;

    color: #e8e8e8;

    font-family: inherit;
    font-size: inherit;

    width: 300px;
}

#enter-button {
    display: none;

    margin-top: 40px;

    color: #202123;
    background: #d97757;

    text-decoration: none;

    padding: 10px 16px;
    border-radius: 6px;
}

#enter-button:hover {
    opacity: 0.9;
}