html, body {
    height: 100%; /* Ensure full height for body */
    margin: 0; /* Remove default margin */
}

body {
    font-family: 'Iosevka Web', 'Iosevka', monospace !important;
    background-color: #000;
    color: #c82307;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center items horizontally */
}

img {
    max-width: 100% !important;
    height: auto !important;
}

.content {
    flex-grow: 1; /* Allow this to take up available space */
    display: flex;
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center items horizontally */
}

.link-container {
    display: inline-block;
    margin-bottom: 10px;
    white-space: pre; 
    overflow: hidden;
}

pre {
    white-space: pre-wrap; 
    word-wrap: break-word; 
    margin: 0;
    font-size: 2em;
    text-align: center;
}

.ascii-art {
    cursor: pointer; 
    text-decoration: none; 
    color: inherit; 
}

.ascii-art:hover {
    color: #b07467; 
}

.clock {
    color: #c82307; 
    letter-spacing: 5px;
    margin-top: 10px; 
    text-align: center; 
}

.footer {
    background-color: #000; 
    color: #c82307; 
    text-align: center;
    align-items: center;
    padding: 10px 0; 
    width: 100%; 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
}

.footer-container {
    display: flex; /* Use flexbox for the inner container */
    justify-content: space-between; /* Space out the icons evenly */
    align-items: center; /* Center icons vertically */
    width: 100%; /* Ensure it takes full width */
    max-width: 600px; /* Optional: Limit the width for better appearance */
}
.social-icon {
   width: 18px;
   height: 18px;
   filter: invert(13%) sepia(95%) saturate(6148%) hue-rotate(355deg) brightness(95%) contrast(101%);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.about-link, .blog-link, .back-link {
    color: #c82307;
    text-decoration: none;
}

.about-link:hover, .blog-link:hover, .back-link:hover {
    color: #b07467;
}

/* Media Queries for Responsive Adjustments */
@media (max-width: 600px) {
    pre, .clock {
        font-size: 12px; /* Smaller size for mobile */
    }

    .link-container {
        margin-bottom: 5px; /* Adjust space for mobile */
        font-size: 24px;
    }

    .social-icon {
        width: 16px; /* Smaller logo size for mobile */
        height: 16px; /* Smaller logo size for mobile */
    }

    .content {
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }

    #about-content, #blog-content {
        padding: 0 15px;
        text-align: left;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        font-size: 14px;
        line-height: 1.4;
    }

    #about-content h1, #blog-content h1 {
        text-align: center;
        font-size: 18px;
    }

    #about-content h3, #blog-content h3 {
        font-size: 16px;
    }

    #about-content p, #blog-content p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 1em;
    }

    #blog-content img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}

@media (min-width: 601px) {
    .clock {
        margin-top: -10px; /* Increased space for larger screens */
    }
}

