@import "fonts.css";

@font-face {
    font-family: 'IBMPlexMono';
    src: url('../fonts/IBMPlexMono-Regular-Latin1.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    --base03: #002b36;
    --base02: #073642;
    --base01: #586e75;
    --base00: #657b83;
    --base0: #839496;
    --base1: #93a1a1;
    --base2: #eee8d5;
    --base3: #fdf6e3;
    --yellow: #b58900;
    --orange: #cb4b16;
    --red: #dc322f;
    --magenta: #d33682;
    --violet: #6c71c4;
    --blue: #268bd2;
    --cyan: #2aa198;
    --green: #859900;
}

body {
    background-color: #2b2b2b;
    color: #a9b7c6;
    font-family: 'IBMPlexMono', monospace;
    /* Updated font family */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 20px;
    /* Increased font size */
}

.terminal-body {
    width: 80%;
    max-width: 800px;
    text-align: left;
}

.prompt {
    color: #6897bb;
}

.command {
    color: #cc7832;
}

a {
    color: #6897bb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    color: #a9b7c6;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 1em;
    /* Match the font size */
    background-color: #a9b7c6;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    /* Align cursor with text */
}

@keyframes blink {

    from,
    to {
        background-color: transparent;
    }

    50% {
        background-color: #a9b7c6;
    }
}