/* Set html and body to take full height */
html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
}

/* Use flexbox to layout the page */
body {
    display: flex;
    flex-direction: column;
}



/* Sticky footer styles */
footer {
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    flex-shrink: 0;
}

.site-description {
    font-size: 1.2em;
    color: #666666;
    margin: 5px 0 15px 0;
}

/* Header Icons Styles */
.header-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.header-icons a {
    color: #333333;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.header-icons a:hover {
    color: #0073aa;
    transform: scale(1.2);
}

/* Content Area Styles */
.content-area {
    padding: 10px;
    max-width: 800px;
    margin: 0 auto;
    flex: 1;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.my-custom-post {
    width: 100%;
    max-width: 800px;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}


#google-search-widget {
    margin-top: 30px;
}

.custom-image-class {
    max-width: 60%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.custom-image-class img {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .body {
        width: 100%;
    }
    .site-title {
        font-size: 1.8em;
    }

    .site-description {
        font-size: 1em;
    }

    .footer-menu li {
        margin: 10px 10px;
    }

    .header-icons a {
        font-size: 18px;
    }

    .my-custom-post{
        font-size: 1.8em;
    }

    .custom-image-class {
        max-width: 400px;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {

    .site-title {
        font-size: 1.5em;
    }

    .site-description {
        font-size: 0.9em;
    }

    .header-icons a {
        font-size: 16px;
    }

    .footer-menu li {
        margin: 10px 10px;
    }

    .my-custom-post{
        font-size: 1.5em;
    }
}

/* Centering the header content */
.header-content {
    display: flex;
    flex-direction: column; /* Stack the text vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    flex-grow: 1; /* Allow the content to grow and occupy available space */
    text-align: center; /* Center text */
    padding: 0 20px; /* Optional: Add padding for spacing */
}

.read-more-link {
    color: #0073aa;
    text-decoration: none;
}

/* Button styling */
button.bg-blue-600 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

button .fas.fa-search {
    font-size: 1.25rem;
}

#afscontainer {
    width: 80%;
}

.writer-name-small {
    font-size: 0.875em; /* Adjust the size as needed */
} 