
/* Styling for the entire page */
body {
  background-image: url('images/b3.jpg'); /* Replace 'back.jpg' with the URL or path to your image */
  background-size: cover; /* Cover the entire background */
  background-position: center; /* Center the background image */
  margin: 0;
  padding: 0;
  position: relative; /* Required for stacking elements */
}


/* Styling for the gallery */
#video-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.thumbnail {
  margin: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  max-width: 300px; /* Adjust maximum width as needed */
}

.thumbnail:hover {
  transform: scale(1.05);
}

.thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.thumbnail:hover img {
  transform: scale(1.2);
}

.thumbnail h3 {
  margin-top: 10px;
  font-size: 1.2em;
  text-align: center;
}

.thumbnail p {
  margin: 5px 0;
  text-align: center;
  color: #777;
}
