@font-face {
    font-family: 'Share Tech Mono';
    src: url('fonts/ShareTechMono-Regular.ttf') format('truetype');
}

body {
    background: #000;
    color: #00ff33;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    font-family: 'Share Tech Mono', monospace;
    padding: 40px;
}

.terminal {
    max-width: 700px;
}

.line {
    margin: 6px 0;
}

.prompt {
    color: #00ff33;
}

.output {
    margin-left: 20px;
    margin-bottom: 10px;
}

a {
    color: #00ff33;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#cursor {
    display: inline-block;
    width: 10px;
    height: 1em;
    background: #00ff33;
    animation: blink 1s steps(1) infinite;
    vertical-align: -2px;
}

@keyframes blink {
    50% {
        background: transparent;
    }
}

pre {
    margin: 0;
    font-family: inherit;
}
