body {
    background-color: #0d0d0d;
    color: #00ff00;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

#loading-screen {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 2rem;
}

#boot-text {
    white-space: pre-wrap;
}

#main-content {
    text-align: center;
    border: 2px solid #00ff00;
    padding: 2rem;

    animation: fadeIn 1s forwards;
    max-width: 800px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#ascii-art {
    color: #ff00ff;

    font-size: 1rem;
    margin-right: 2rem;
}

.info p {
    margin: 0.5rem 0;
}

.prompt {
    color: #ffff00;
    margin-bottom: 0.5rem;
}

.file-container {
    margin-top: 2rem;
}

.file-content {
    display: none;
}

.highlight {
    color: #ffff00;

}

h2 {
    color: #00ffff;

    border-bottom: 1px solid #00ffff;
    padding-bottom: 0.5rem;
}



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

li::before {
    content: '> ';
}

footer {
    margin-top: 2rem;
    color: #888;
    font-size: 0.8rem;
}


