/* Add your custom CSS styles here */

body {
    font-family: 'Roboto', sans-serif;
   
  }
  
  .navbar {
    padding: 0.5rem 1rem;
  }
  
  .navbar-brand {
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .hero {
    background-image: url('wallpaperflare.com_wallpaper\ \(2\).jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  .about,
  .features,
  .testimonials,
  .events,
  .gallery,
  .timeline,
  .registration,
  .prizes {
    padding: 4rem 2rem;
  }
  
  .about h2,
  .features h2,
  .testimonials h2,
  .events h2,
  .gallery h2,
  .timeline h2,
  .registration h2,
  .prizes h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .about p,
  .features p,
  .testimonials p,
  .events p,
  .gallery p,
  .timeline p,
  .registration p,
  .prizes p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .features .card {
    margin-bottom: 2rem;
  }
  
  .testimonials .carousel-item {
    text-align: center;
    padding: 2rem;
  }
  
  .testimonials .carousel-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  .events table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .events th,
  .events td {
    padding: 1rem;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  .gallery .carousel-item {
    height: 30rem;
    background-size: cover;
    background-position: center;
  }
  
  .timeline .timeline-item {
    padding: 2rem;
    border-bottom: 1px solid #ddd;
  }
  
  .timeline .timeline-item:last-child {
    border-bottom: none;
  }
  
  .timeline .timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .timeline .timeline-item p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .registration form input,
  .registration form textarea {
    display: block;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .registration form button {
    background-color: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .prizes .card {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .prizes .card img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }
  
  .footer {
    background-color: #333;
    color: white;
    padding: 2rem;
    text-align: center;
  }