h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    color: #aecd00;
  }
  




  body {
    font-family: Arial, sans-serif;
    color: #aecd00;
  }  

  html {
    scroll-behavior: smooth;
  }
  
  
  header {
    padding: 2em;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .header-home {
    background-image: url('gradientbackground.jpg');
  }
  
  header h1 {
    margin: 0;
  }
  
  nav {
    margin-top: 0.5em;
  }
  
  nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #fff;
  }
  


  .hero {
    text-align: center;
    padding: 3em 1em;
    background: url('10.jpg') center/cover no-repeat;
    color: white;
    text-shadow: 2px 2px #000;
  }
  
  .gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 2em;
    flex-wrap: wrap;
  }
  
  .gallery img {
    width: 300px;
    height: auto;
    border-radius: 125px;
    transition: transform 0.3s;
  }
  
  .gallery img:hover {
    transform: scale(1.05);
  }
  
  .cards {
    display: flex;
    justify-content: space-around;  
    padding: 2em;
    flex-wrap: wrap;
  }
  
  
  .card {
    background: #1d2023;
    padding: 1.5em;
    margin: 1em;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 0 15px rgb(183, 196, 43);
    transition: transform 0.3s;
  }

  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .about {
    padding: 2em;
    line-height: 1.6;
  }
  
  footer {
    background: #aecd00;
    text-align: center;
    padding: 1em;
    margin-top: 2em;
  }
  
  .photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 2em;
  }
  
  .photo img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(11, 132, 15, 0.897);
    transition: transform 0.4s ease;
  }
  

  .photo img:hover {
    transform: scale(1.05);
  }
  
  .trivia-section {
    padding: 2em;
    background-color: #131212;
    color: white;
    text-align: left;
  }

  
  .trivia-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2em;
    margin-bottom: 1em;
    color: #ffa200;
  }
  
  .trivia-item {
    margin-bottom: 1.5em;
    padding: 1em;
    background: #2a2a2a;
    border-left: 4px solid #d4ff38;
    transition: all 0.3s ease;
  }
  
  .trivia-item:hover {
    background: #333;
  }
  
  .trivia-item .answer {
    color: #aaa;
    font-style: italic;
  }

  .trivia-item .answer {
    visibility: hidden;
    height: 0;
    transition: visibility 0.3s ease;
  }

  
  .trivia-item:hover .answer {
    visibility: visible;
    height: auto;
  }

  
  .back-to-top {
    display: inline-block;
    margin-top: 2em;
    padding: 0.6em 1.2em;
    background-color: #bdff38;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  

  .back-to-top:hover {
    background-color: #297609;
  }
  