/* Console Style */
body {
    background-color: #000;
    color: #00ff00;
    font-family: Consolas, 'Courier New', monospace;
    margin: 0;
    padding: 20px;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }
}

#console-container {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #00ff00;
    padding: 10px;
    height: 400px;
    max-height: 80vh;
    overflow-y: auto;
    background-color: #111;
}

.line {
    margin: 5px 0;
}

.input-line {
    display: flex;
    margin-top: 10px;
}

#command-input {
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: inherit;
    font-size: inherit;
    flex-grow: 1;
    outline: none;
    margin-left: 10px;
}

a {
    color: #00ffff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Scrollbar hiding */
#console-container::-webkit-scrollbar {
    display: none;
}

#console-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.glitch {
    animation: glitch 0.5s infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0)
    }

    20% {
        transform: translate(-2px, 2px)
    }

    40% {
        transform: translate(-2px, -2px)
    }

    60% {
        transform: translate(2px, 2px)
    }

    80% {
        transform: translate(2px, -2px)
    }

    100% {
        transform: translate(0)
    }
}