.main-title {
  text-align: center;      /* Centers the text */
  margin-top: 40px;        /* Space from the top of the screen */
  margin-bottom: 20px;     /* Space between the text and the first video */
  font-family: Arial, sans-serif;
  color: #333;             /* Dark grey color */
  font-size: 28px;         /* Adjust size as needed */
}

.video-gallery {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 40px; 
  padding: 20px;
  max-width: 800px; /* Limits the width so videos aren't too huge on desktop */
  margin: 0 auto;  /* Centers the gallery on the page */
  font-family: Arial, sans-serif;
}

/* Individual Video Card */
.video-item {
  background: #f4f4f4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Video Styling */
video {
  width: 100%;
  display: block;
  background: #000;
}

/* Caption Styling */
.video-caption {
  padding: 15px;
  text-align: center;
  font-weight: bold;
  color: #333;
  border-top: 1px solid #ddd;
}
