body {
    background-color: #a7f6a7;
    color: #000000;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
}

.top-bar {
    background-color: #a7f6a7;
    padding: 10px;
    text-align: center;
}

.top-bar a {
    text-decoration: none;
    color: #000000;
    margin: 0 15px;
    padding: 10px 20px;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.top-bar a:hover {
    background-color: #000000;
    color: #ffffff;
}

h1, h2 {
    text-align: center;
    margin: 20px 0;
}

.main-title {
    font-size: 2.5em;
}

.wip {
    color: #ffcc00;
    font-size: 1.2em;
}

.index {
    background-color: #ffffff;
    padding: 20px; 
    margin: 20px auto; 
    width: 70%; 
    max-width: 500px; 
    border: 1px solid #000000;
    text-align: center; 
}

.index-title {
    color: #000000;
    margin-bottom: 10px; 
}

blockquote {
    border-left: 4px solid #000000;
    padding: 20px;
    margin: 20px auto;
    background-color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    max-width: 600px;
    width: 90%;
    box-sizing: border-box;
    transition: transform 0.3s;
}

blockquote:hover {
    transform: scale(1.02);
}

.blockquote-title {
    color: #000000;
    font-size: 1.5em;
}

.blockquote-text {
    color: #333333;
    font-size: 1.1em;
}

.visit-counter {
    text-align: center;
    margin: 20px 0;
    font-size: 1.2em;
}

hr {
    border: none;
    border-bottom: 2px solid #000000;
    width: 50%;
    margin: 20px auto;
    transition: border-color 0.3s;
}

.responsive-img {
    min-height: 30px;
    min-width: 400px;
    max-width: 100%; /* Ensures images are responsive */
    height: auto; /* Maintains aspect ratio */
}

footer {
    margin: 0; /* Prevent margin collapse */
    text-align: center;
    padding: 5px; /* Reduced padding */
    background-color: #282c34; /* Dark background for footer */
    color: #ffffff; /* White text for footer */
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 0.7em; /* Reduced font size */
    line-height: 1; /* Set line height to 1 for tighter spacing */
    height: 30px; /* Set a fixed height */
    overflow: hidden; /* Prevent overflow */
}


/* Media Queries */
@media (max-width: 768px) {
    .index {
        width: 90%; /* Make index wider on smaller screens */
    }

    .main-title {
        font-size: 2em; /* Adjust title size for smaller screens */
    }

    .blockquote-title {
        font-size: 1.3em; /* Adjust blockquote title size */
    }

    .blockquote-text {
        font-size: 1em; /* Adjust blockquote text size */
    }

    .top-bar a {
        padding: 8px 15px; /* Adjust padding for smaller screens */
    }
}
