body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x:hidden;
}

header {
    background: #307232;
    color: rgb(234, 231, 231);
    padding: 10px 0;
    text-align: center;
    font-family: 'Lora', serif;
    --header-height: 80px;
    
}

nav {
    margin: 10px 0;
}

nav a {
    margin: 0 15px;
    color: rgb(223, 223, 223);
    text-decoration: none;
}

footer {
    background: #333;
    color: rgb(229, 228, 228);
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    font-family: 'Lora', serif;
    --footer-height: 60px;
}

.container {
    padding: 20px;
    font-family: 'Lora', serif;
    background: #29372a;
    color: rgb(227, 227, 227)
}

button {
    padding: 10px 15px;
    background: #4CAF50;
    color: rgb(233, 233, 233);
    border: none;
    cursor: pointer;
}

.full-page-image {
    width: 100%; /* Makes the image span the full width of the page */
    height: calc(100vh - var(--header-height) - var(--footer-height)); /* Full viewport height minus header/footer */

    display: block; /* Ensures no extra space around the image */
    margin: 0; /* Removes default spacing */
    
}
  
    img:not(.full-page-image) {
        width: 100%; /* Ensures images are responsive and fit their container */
        max-width: 400px; /* Limits images to a maximum width */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Centers images and prevents inline spacing */
        margin: auto; /* Centers images horizontally */
    }
    

    .fade {
            animation: fade 1.5s ease-in-out;
        }

        @keyframes fade {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .slideshow-container {
            position: relative;
            width: 80%;
            max-width: 600px;
            overflow: hidden;
            border-radius: 10px;
            
        }

        .slides {
            display: none;
            width: 100%;
        }
        .centered {
            text-align: center; /* Centers the content */
        }

        .dot {
            /* Add any styles you want for the dots */
            display: inline-block;
            width: 10px; /* Example size */
            height: 10px; /* Example size */
            margin: 5px; /* Space between dots */
            background-color: gray; /* Example color */
            border-radius: 50%; /* Make dots circular */
            cursor: pointer; /* Change cursor to pointer on hover */
        }
