@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

:root {
    --primary-color: lime;
    --background-color: black;
}

body {
    background-color: var(--background-color);
    color: var(--primary-color);
    font-family: 'Share Tech Mono', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#boot-screen {
    width: 100%;
    height: 100vh;
    background: black;
    color: lime;
    font-family: 'Share Tech Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
}

#boot-text {
    font-size: 16px;
    white-space: pre-wrap;
}

#terminal {
    width: 80%;
    max-width: 700px;
    height: 500px;
    border: 3px solid var(--primary-color);
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 15px var(--primary-color);
    overflow: hidden;
    position: relative;
}

#output {
    height: 90%;
    overflow-y: auto;
    padding: 10px;
    white-space: pre-wrap;
}

#input-line {
    display: flex;
    align-items: center;
    font-size: 16px;
}

#input-line span {
    margin-right: 5px;
}

#input {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 16px;
    width: 100%;
    outline: none;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-color: var(--primary-color);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.cyberpunk {
    --primary-color: cyan;
    --background-color: #1a1a3b;
}
