 /* Add your custom CSS styles here */
 body {
    font-family: Arial, sans-serif;
  }


.navbar {
  background-color: rgba(255, 255, 255, 0.5);
  font-family: 'Abolition Test', sans-serif;
  font-size: 1.6rem;
}

/* Adjust text color on transparent navigation */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.7);
}

/* Dark text color on hover */
.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 1);
}

.navbar-brand img {
  display: block;
  max-width: 100px; /* Adjust the maximum width as needed */
  height: auto;
}



#videos {
    background-color: #f8f9fa;
    padding: 80px 0;
  }
  
  h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .video-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .video-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .video-thumbnail img {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  .video-details {
    padding: 20px;
  }
  
  .video-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
  }

  #footer {
    background: #343a40;
    color: #fff;
    padding: 20px 0;
    font-family: 'Abolition Test', sans-serif;
    font-size: 1.2rem;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .video-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 576px) {
    .video-list {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  