/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
  }
  
  /* Set a background image for the body */
  body {
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
  }
  .logo {
    width: 200px; /* Adjust the width as needed */
    height: auto; /* This maintains the aspect ratio */
    display: block; /* Ensures the logo is centered */
    margin: 0 auto; /* Centers the logo horizontally */
  }
  /* Registration button styles */


/* Rest of your existing styles */

  
  /* Style the header section */
  header {
    background-color: #1b1464;
    color: white;
    text-align: center;
    padding: 2rem 0;
  }
  .registration-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    margin-right: 20px;
    margin-left: 40%;
    font-weight: bold;
  }
  
  .registration-button:hover {
    background-color: #ecc56b;
  }
  
  /* Style the main event details section */
  #event-details {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }

  .banner{
    background-image: url('images/banner.jpeg');
    background-size: cover;
    height: 100%;
    padding-bottom: 40%;

  }
  
  /* Style the highlights section */
  .highlights-container {
    margin-top: 1.5rem;
    
  }
  
  .highlights-list {
    list-style: none;
    padding-left: 1rem;
  }
  
  .highlights-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .highlights-list li:before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: #1b1464;
  }
  
  /* Style the venue and event details */
  #event-details h2 {
    
    color: #1b1464;
    margin-bottom: 1rem;
    
  }
  
  #event-details p.venue {
    font-weight: bold;
    margin-top: 1rem;
  }

  #schedule {
    margin-top: 30px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
  }
  
  th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ccc;
  }
  
  th {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  
  td[colspan] {
    text-align: center;
    font-weight: bold;
  }
  
  td[rowspan] {
    vertical-align: top;
  }
  
  /* Add more styles as needed */
  
  
  /* Style links */
  a {
    color: #1b1464;
    text-decoration: none;
  }
  
  a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  
  /* Style buttons */
  .button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #1b1464;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .button:hover {
    background-color: #007bff;
  }
  