#header,
#content,
#footer {
    visibility: hidden; /* Initially hide */
}

.revealed {
    visibility: visible !important; /* Class to make visible */
}

body {
    background: #000;
    color:rgb(0, 255, 128); 
    font-family: 'VT323', monospace;
    font-size: 18px;
    margin: 0 20px;
    padding: 20px;
    line-height: 1.2;
    height: 80vh;
    display: flex;
    flex-direction: column;
}
a {
    text-decoration: none;
    color: hsla(201, 100%, 50%, 0.849);
}
pre {
    margin: 0;
    white-space: pre-wrap;
}

.terminal {
    max-width: 800px;
    margin: 0 auto;
}

#header {
    margin-bottom: 20px;
    border-bottom: 1px solid ;
    padding-bottom: 20px;
}

#rowtwo {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

#content {
    margin: 40px 0;
    flex-grow: 1;
}

#content code {
    display: block;
    margin: 10px 0;
}

.function-key {
    color: hsla(201, 100%, 50%, 0.849);
    line-height: 2;
}
.blue {
    color: hsla(201, 100%, 50%, 0.849);
}
#footer {
    border-top: 1px solid;
    padding-top: 20px; 
}
.footer {
    border-top: 1px solid;
    padding-top: 20px; 
}
.cursor {
    animation: blink 1s infinite;
}

.white {
    color: white;
}
.centre {
    text-align: center;
}

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

@media (max-width: 800px) {
    body {
        font-size: 12px;
        margin: 0px;
        padding: 0px;
    }
    .terminal {
        max-width: 100%;
    }
    #header {
        font-size: 6px !important;
    }
}
@media (max-width: 700px) {
    #header {
        font-size: 6px !important;
    }
}

@media (max-width: 800px) {
    #rowtwo {
        flex-direction: column;
    }
}