.content {
  margin-top: 70px;
  padding: 20px;
}

.responsive-video {
  width: 100%;
  max-width: 1000px;
  height: auto;
  cursor: pointer;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  position: relative;
  z-index: -1;
}

.responsive-video:hover {
  transform: scale(1.02);
 
}

.video-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  position: relative;
}

.video-title {
  text-align: center;
  font-size: 24px;
  margin: 20px 0;
  color: #007bff;
  font-weight: 500;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: white;
  background-color: rgba(0, 123, 255, 0.8);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: none;
  z-index: 2;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s;
}

.video-container:hover .play-button {
  display: block;
}

.play-button:hover {
  background-color: rgba(0, 123, 255, 1);
}


/* Responsive Design */
@media only screen and (max-width: 768px) {
  

  .video-title {
    font-size: 20px;
  }

  .responsive-video {
    max-width: 100%;
    border-radius: 5px;
  }

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

 
}

@media only screen and (max-width: 480px) {
  

  .video-title {
    font-size: 18px;
  }

  .responsive-video {
    max-width: 100%;
  }

  .play-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}