body {
  padding-top: 80px;
}
.video-section {
    background: linear-gradient(to bottom right, #fdfdfd, #ffffff);
}
.logo{
    width: 40px;
    height: 50px;
    border-radius: 5px;
}
.video-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
video {
  max-height: 300px;
  object-fit: cover;
  background-color: #000;
}