/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 1em;
    text-align: center;
}

h1, h2 {
    margin: 0;
}

section {
    padding: 2em;
    margin: 1em auto;
    max-width: 900px;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 0.3em;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    padding: 0.5em 0;
}

/* Buttons */
.button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
    border-radius: 5px;
}

.button:hover {
    background-color: #45a049;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 1em;
}

.image-gallery img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 1em;
    background-color: #333;
    color: white;
}

/* Video Section */
iframe {
    display: block;
    margin: 0 auto;
    border: none;
}

/* For framing and zooming in on the image */
.zoomed-image {
    width: 150px;  /* Size of the image in the gallery */
    height: 150px; /* Size of the image in the gallery */
    object-fit: cover; /* Ensures the image fills the box but is cropped if necessary */
    object-position: center; /* Centers the image in the frame */
    border-radius: 50%; /* Keeps the circular shape */
}