/* Reset + base */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  text-align: center;
  display: -webkit-flex;  /* Safari */
  -webkit-flex-direction: column;
  flex-direction: column;
   min-height: 100vh;
  margin: 0;
}

/* NAVBAR */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #333;
  display: flex;
  align-items: center; /* ✅ vertical alignment fix */
}

/* Navbar items */
ul li {
  list-style: none;
}

/* Links */
ul li a {
  display: flex;
  align-items: center;       /* ✅ centers text vertically */
  height: 48px;              /* ✅ consistent height */
  padding: 0 20px;
  color: white;
  text-decoration: none;
}

/* Hover effect */
ul li a:hover {
  background-color: #555;
}

/* DROPDOWN (select) */
ul li select {
  height: 48px;              /* ✅ matches links */
  border: none;
  background-color: #333;
  color: white;
  font-size: 16px;
  display: block;
}

/* Remove default outline */
ul li select:focus {
  outline: none;
}

/* Hover effect */
ul li select:hover {
  background-color: #555;
  cursor: pointer;
}

/* Optional tiny adjustment (if needed) */
ul li select {
  position: relative;
  top: 1px; /* tweak if slightly off */
}

/* LOGO */
img {
  margin-top: 30px;
}

/* HEADINGS */
h1 {
  margin-top: 20px;
}

/* VIDEO */
.video-container {
  max-width: 800px;
  margin: 30px auto;
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
}

/* BACK LINK */
a {
  display: inline-block;
  margin-top: 20px;
  font-size: 18px;
  color: blue;
}
main {
  flex: 1;
  padding: 20px;
  text-align: center;
  -webkit-flex: 1;
}

footer {
  background: black;
  color: white;
  text-align: center;
  padding: 1rem;
}
.white {
color : white;
}
p {
text-align: center;
}
