.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo {
    flex: 0 0 auto;
}

.center-nav {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-size: 1.2em;
}
main {
	margin-top: 50px;
    background-color: #D0FFFF;
    padding: 30px;
    border-radius: 10px;
}
.center-nav nav a {
    font-size: 1.5em;
    margin: 0 30px;
    text-decoration: none;
}

.center-nav nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    margin: 40px 0;
}

.video-gallery video,
.video-gallery iframe {
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    background: #fff;
}
body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  width: 100%;
  bottom: 0;
}
p {
	font-size:1.5em;
}
.carousel-item img {
  max-height: 500px;      /* adjust height as needed */
  width: 100%;            /* keep full width */
  object-fit: cover;      /* crop edges instead of stretching */
}
footer.footer {
  background-size: cover;
  background-position: center;
  min-height: 150px; /* instead of fixed height */
}
