body {
    font-family: 'Courier New', monospace;
    background: #0d0d0d;
    color: #00ff41;
    padding: 40px;
}

.command {
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.terminal-box {
    display: block !important;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #33ff33;
    padding: 15px;
    background: rgba(0, 50, 0, 0.1);
    box-shadow: 0 0 10px rgba(51, 255, 51, 0.2);
    margin-bottom: 20px;
}

.terminal-link {
    color: #33ff33;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid transparent;
}
.terminal-link:hover {
    background-color: #33ff33;
    color: #0a0a0a; /* Invert colors*/
    text-decoration: none;
}

/* Blinker */
.blink {
    animation: blinker 1s linear infinite;
}
@keyframes blinker {
    50% { opacity: 0; }
}