/* General Body Styles */
body {
    background-color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Heading Styles */
h1, h2 {
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    color: #ffffff;
    margin: 0.5em 0;
    text-align: center;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 1.875em;
}

/* Paragraph Styles */
p {
    font-size: 1.2em;
    margin: 0.5em 0;
    text-align: center;
}

/* Link Styles */
a {
    color: #ffff00;
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: underline;
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
}

img.center {
    display: block;
    margin: 0 auto;
}

/* Container Styles */
div.center {
    margin: 0 auto;
    width: 90%; /* Use a percentage for better responsiveness */
    max-width: 700px; /* Limit max width for better display on larger screens */
}
/* Top button styles */
.top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFFF00; /* Accessible yellow */
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-decoration: none;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.top-button:hover {
    background-color: #CCCC00; /* Darker shade for hover/focus */
    text-decoration: underline;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


/* Navigation Styles */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 2em; /* Space between navigation links */
    list-style: none;
    padding: 0;
    margin: 1em 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    font-weight: bold;
}

/* Highlighted Links */
a.highlight {
    color: #ffff00;
    font-weight: bold;
}

/* Section Styles */
section {
    margin: 2em 0;
}

section ul {
    list-style-type: none;
    padding: 0;
}

section ul li {
    margin: 0.5em 0;
    text-align: center;
}

/* Blog Links */
.blog-links {
    display: flex;
    justify-content: space-between;
    margin: 1em 0;
}

.blog-links img {
    width: 38px;
    height: 50px;
}

/* Small Section */
#sml_sec {
    float: right;
    margin: 0 0 0 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    div.center {
        width: 95%;
    }

    .blog-links {
        justify-content: center;
    }

    #sml_sec {
        float: none;
        margin: 0 auto;
        text-align: center;
    }
}
