﻿body {
    background-color: #242424;
    color: #ffffff;
    font-family: 'Cascadia Mono';
    padding: 0;
    margin: 0;
}

/* Navigation bar at top */
.navigation {
    background-color: #97ac82;
    padding: 15px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    color: white;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
 .nav-links a {
        color: #0a0a0a;
        text-decoration: none;
        font-weight: 600;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
    }

.home-btn {
    display: inline-block;
    background-color: transparent;
    color: #617955;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-family: 'Cascadia Mono', monospace;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

    .home-btn:hover {
        background-color: #000;
        color: #7fb069;
    }

/* no border */
.terminal {
    padding: 20px;
    max-width: 2700px;
    margin: auto;
}

.line {
    margin: 10px 0;
}

input[type=text] {
    background: none;
    border: none;
    border-bottom: 1px solid #7fb069;
    color: #7fb069;
    width: 80%;
    font-family: monospace;
}

input:focus {
    outline: none;
}

.btn {
    background-color: #ffffff;
    color: #242424;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
}

    .btn:hover {
        background-color: #e0e0e0;
    }

/* Links in terminal output */
a {
    color: #9cc97f;
    text-decoration: underline;
}

    a:hover {
        color: #7fb069;
    }
