@font-face {
    font-family: "Hack";
    src: url("fonts/hack.ttf");
}

body {
    background-color: #0d0d0d;
    color: #d6d6d6;
    font-family: "Hack", monospace;
    padding: 40px;
    line-height: 1.6;
    margin: 0;
}

h1 {
    font-size: 32px;
    margin-bottom: 4px;
    font-weight: normal;
    color: #f0f0f0;
}

p {
    margin-top: 0;
    color: #cccccc;
}

.prompt {
    color: white;
    margin-right: 8px;
    white-space: nowrap;
}

.command-input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-family: "Hack", monospace;
    font-size: 16px;
    caret-color: #aa2222;
    flex: 1;
}

.terminal-line {
    display: flex;
    align-items: center;
}

pre {
    margin: 0;
    font-family: "Hack", monospace;
    color: #d6d6d6;
}

.boot-message {
    color: #777777;
    margin-bottom: 12px;
}

.accent {
    color: #aa2222;
}

.error {
    color: #aa2222;
}

.output {
    animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.version {
    color: #666666;
    font-size: 16px;
}

a {
    color: #d6d6d6;
    text-decoration: none;
}

a:hover {
    color: #d6d6d6;
    text-decoration: underline;
    text-decoration-color: #aa2222;
}
