/* Body style: sets background color, font color, font family, and margin */
body {
    background-color: #f0f0f0;      /* Light gray background */
    color: #333333;                 /* Dark gray text */
    font-family: Arial, sans-serif; /* Clean sans-serif font */
    margin: 10px;                   /* 10px margin around the body */
}

/* Center the main header (h1) */
h1 {
    text-align: center;
}

/* Center the site navigation */
nav {
    text-align: center;
    background-color: #f0f0f0;       /* Light gray background */
    padding: 10px;
    border: 2px solid #333333;       /* Dark gray border */
    border-radius: 8px;
    margin: 20px auto;
    width: fit-content;
}
.content-figure {
    text-align: center;
    margin: 20px 0;
}

.content-figure img {
    width: 800px;         /* Adjust size as needed */
    height: auto;
    border-radius: 8px;
}

.content-figure figcaption {
    font-style: italic;
    font-size: 1.5em;
    color: #555;
    margin-top: 5px;
}

}

.video-container {
    display: flex;
    justify-content: center;    /* Center horizontally */
    margin: 20px 0;
}

.video-container iframe {
    width: 560px;
    height: 315px;
    max-width: 100%;
    border-radius: 8px;         /* Optional: rounded corners */
}

.image-container img {
    width: 300px;         /* Set desired width */
    height: auto;         /* Maintain aspect ratio */
    border-radius: 8px;   /* Optional: rounded corners */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Optional: styling */
}





/* Center the footer content */
footer {
    text-align: center;
}
