@font-face {
    font-family: 'VGA';
    src: url('../../fnt/vga.ttf') format("truetype");
}

.cyan { color: cyan; }
.orange { color: orange; }
.light-pink { color: #ff77ff; }

@keyframes rainbow_animation {
    0%,100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}
.rainbow {
    background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 6s ease-in-out infinite;
    background-size: 400% 100%;
}
body {
    background-color: #17101A;
    color: #ff77ff;
    font-family: 'VGA', monospace;
    font-size: 12pt;
    margin: 0;
    padding: 0;
}

#terminal-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

#terminal {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Ensure outputs start from the top */
    white-space: pre-wrap;
}

#input-container {
    display: flex;
    padding: 10px;
    background: #1f1a24; /* Slightly different color if needed for contrast */
}

#input-container span {
    color: #ad83ee;
    margin-right: 5px;
}

#command-input {
    flex-grow: 1;
    background: #17101A;
    color: white;
    border: none;
    outline: none;
    font-family: 'VGA', monospace;
    font-size: 12pt;
}

.output {
    white-space: pre-wrap;
}

a:link {
    color: orange;
    text-decoration: none;
}

a:visited {
    color: orange;
    text-decoration: none;
}

a:hover {
    color: #f3cb7f;
    text-decoration: none;
}

a:active {
    color: #f3cb7f;
    text-decoration: none;
}