/* General styles for your website */
html {
    font-size: 24px; /* Set base font size to 24px for accessibility */
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
}

body {
    min-height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    font-family: 'Open Sans', 'Franklin Gothic Sharp', Arial, sans-serif;
    line-height: 1.5; /* Improved readability */
}

.container {
    text-align: center;
}

.centered-image {
    margin: 0 auto;
    text-align: center;
}

.small-image {
    margin: 0 auto;
    text-align: center;
    width: 100px;
    height: 100px;
}

.centered-text {
    margin-top: 20px;
    text-align: center;
}

/* Headings: bold text */
h1, h2, h3, h4, h5, h6 {
    font-size: inherit; /* Inherit global font size (24px) */
    font-weight: bold;
    margin: 20px;
}

/* Paragraphs: regular weight, consistent font size */
p {
    margin: 20px;
}

/* Links: bold text */
a:link, a:visited, a:hover, a:active {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

/* Specific class for links in paragraphs, if needed */
.a-text:link, .a-text:visited, .a-text:hover, .a-text:active {
    color: white;
    text-decoration: none;
    font-weight: bold; /* Ensure these are bold too */
    text-align: center;
}

/* Button styles */
button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: inherit; /* Inherit the global font size (24px) */
    cursor: pointer;
}

button:hover {
    background-color: #333;
}


