.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;
  }


/* Customize card appearance */
.card {
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  /* Style card image */
  .card-img-top {
    object-fit: cover;
    height: 200px;
  }
  
  /* Style card content */
  .card-body {
    padding: 1.5rem;
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .card-text {
    font-size: 1rem;
    color: #6c757d;
  }

  .date{
    font-size: small;
  }

  .location{
    font-size: small;
  }
  
  /* Style ticket button */
  .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  
  /* Center the event cards */
  #event-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
  }
  
  /* Add space between cards on smaller screens */
  @media (max-width: 768px) {
    #event-list {
      gap: 10px;
    }
  }
  