/* Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 10px;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

/* Header Styling */
header {
    text-align: center;
    background-color: #f8f8f8;
    padding: 20px;
    border-bottom: 3px solid #ccc;
}

/* Navigation Bar */
nav {
    background-color: #f0f0f0; /* Light gray background */
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid #ccc;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #ddd;
}

/* Making sure pictures stay put on small screens */
@media (max-width: 500px) {
    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 5px 0;
    }
}

/* Centering Main Image */
.image-container {
    text-align: center; /* Centers inline elements like images */
    margin: 20px 0;
}

.image-container img {
    display: inline-block;
    max-width: 90%;
    height: auto;
    border-radius: 10px;
}

/* Two Images Per Row */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.gallery-container figure {
    width: calc(50% - 15px); /* Make sure two images fit per row with spacing */
    text-align: center;
    margin: 0;
}

.gallery-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Video Styling */
.video-container {
    text-align: center;
    margin: 20px 0;
}

iframe {
    max-width: 100%;
    border-radius: 10px;
}

/* Footer Styling */
footer {
    background-color: #f8f8f8;
    padding: 15px;
    text-align: center;
    border-top: 2px solid #ccc;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul a {
    display: block;
    color: #0066cc;
    text-decoration: none;
    margin: 5px 0;
}

footer ul a:hover {
    text-decoration: underline;
}
