* {
  margin: 0;
  padding: 0;
}

input, a, #age {
  padding: 10px;
  font-size: 16px;
  margin: 10px;
  border-radius: 8px;
  border: none;
  color: gray;
}

#david-video {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}

.video-wrapper {
  position: relative;
  width: 100%; /* centered and not full-width */
  aspect-ratio: 16 / 9; /* maintain 16:9 ratio */
  overflow: hidden;
  border-radius: 12px;
}

/* Video inside the wrapper */
#david-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1) contrast(1.2) saturate(1.1);
  z-index: 0;
  display: block;
}

/* 📱 Mobile (iPhone sizes) */
@media (max-width: 768px) {
#david-video {
  background-color: #ffe6e6; /* light pink */
}

.video-wrapper {
  width: 90%;
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
}

/* 📲 Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
#david-video {
  background-color: black; /* light pink */
}

.video-wrapper {
  width: 80%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
}