body {
    background-color: #121212;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: #000;
    padding: 10px;
    width: 100%;
    text-align: left;
    /* Align text to the left */
}

.banner {
    display: flex;
    justify-content: center;
    /* Center-align the content horizontally */
    padding: 15px 15px 10px 15px;
    /* Added padding from top and left */
}

.home-link,
.page-link {
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    color: #0f0;
    text-decoration: none;
    margin-right: 20px;
    outline: 2px solid #0f0;
    padding: 10px 20px;
}

.home-link:hover,
.page-link:hover {
    color: #0a0;
}

#main-content {
    max-width: 800px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #000;
    padding: 10px 0;
    text-align: center;
}

footer a img {
    width: 24px;
    height: auto;
}
