body {
    background-color: #0a4b82;
    color: #ffffff;
    font-family: 'Franklin Gothic', sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Center specific text */
.center-text {
    text-align: center;
}

/* Center images */
.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}

/* Center image with its caption */
.image-container {
    text-align: center;
    margin: 20px 0;
}

.image-caption {
    margin-top: 10px;
    font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffff00;
    text-align: center;
}

p {
    text-align: justify;
    margin: 0 auto;
    padding: 10px 0;
}

a {
    color: #ffff00;
}

footer {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    text-align: center;
}