body {
    margin: 0;
    padding: 20px;
    background: #211D1B;
    color: #519975;
    font-family: monospace;
    font-size: 16px;
    min-height: 100vh;
}

#title {
    color: #73ABAD;
    text-align: center;
    margin-bottom: 20px;
}

#terminal {
    border: 1px solid #519975;
    padding: 10px;
    background: black;
    height: 40vh; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#terminal-output {
    overflow-y: auto;
    flex-grow: 1;
    margin-bottom: 10px;
}

#command {
    display: flex;
    align-items: center;
}

#liner::before {
    content: "visitor@jmerhi.com:~$ ";
    color: #519975;
}

#cursor {
    background-color: #73ABAD;
    opacity: 1;
    animation: blinker 1s linear infinite;
    width: 10px;
    height: 1.5em;
    display: inline-block;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

textarea#texter {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

#visitor-count {
    text-align: center;
    color: #fff;
    margin-top: 20px;
    font-size: 18px;
}

footer {
    text-align: center;
    color: #fff;
    margin-top: 20px;
    font-size: 18px;
}

.help-table {
    width: 100%;
    table-layout: fixed;
}

.help-table td:first-child {
    width: 150px; 
    font-family: monospace;
}

.help-table td {
    padding: 3px;
    font-family: monospace;
}