body {
  font-family: Arial;
  text-align: center;
  background-color: skyblue;
}

h1 {
  color: #2c3e50;
  font-size: 3rem;
}

button {
  padding: 10px 20px;
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: black;
}
.video-gallery {
  text-align: center;
  padding: 40px;
  background: linear-gradient(to bottom right, #ffe4f2, #fef8ff);
}

.video-gallery h2 {
  font-size: 2em;
  color: #ff1493;
  margin-bottom: 20px;
  animation: fadeIn 2s ease;
  max-width: 100%;
  height: auto;
}

.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.container {
  width: 100%
    max-width: 1200px;
  margin: auto;
}

video, iframe {
  width: 320px;
  height: 200px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

video:hover, iframe:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4);
}

/* Simple animation for title */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
video, iframe {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}





