
body {
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    padding: 20px;
}

.navigation {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
}

.navigation ul {
    list-style-type: none;
    padding: 0;
}

.navigation li {
    display: inline;
    margin: 0 15px;
}

.navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #00ffcc;
}

.landing-content h1 {
    font-size: 2.5em;
    animation: fadeIn 2s ease-in-out;
}

.landing-content p {
    font-size: 1.2em;
    color: #aaa;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.terminal {
    background: #111;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #00ffcc;
}

.terminal input {
    background: #000;
    color: #00ffcc;
    border: 1px solid #00ffcc;
    padding: 5px;
    width: 80%;
}

.terminal-output p {
    font-family: monospace;
    color: #00ffcc;
    text-shadow: 0px 0px 5px rgba(0, 255, 204, 0.8);
}
