body, html {
    margin: 0;
    padding: 0;
    font-family: 'Jetlab Squeeze Medium', sans-serif;
    font-size: 2em;
    -webkit-text-stroke-width: 2px; 
    -webkit-text-stroke-color: black;
    background: linear-gradient(90deg, #A50026, #FFD700, #008026, #000000);
    background-attachment: fixed;
    overflow-x: hidden;
    padding-top: 60px; /* Height of the header */
}

.page-header {
    text-align: center;
    /* background-color: #333; */
    color: white;
    background: linear-gradient(135deg, #A50026, #FFD700, #008026, #000000);
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensures the header is above other content */
    box-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Optional: Adds shadow for depth */
}

.page-header h1 {
    margin: 0;
    font-size: 2.5em;
    -webkit-text-stroke-width: 0.001em; 
    -webkit-text-stroke-color: black;
    font-family: 'Jetlab Squeeze Medium', sans-serif;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    background: transparent;
}

.section.active {
    display: flex; /* Show only the active section */
}

.section img {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
}

.image-text {
    color: white;
    margin-top: 20px;
}

.prev-button, .next-button {
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 0.25em;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #008026;
    color: white;
}

figure:last-of-type {
    padding-bottom: 0; /* Adjust or remove the padding for the last figure */
}