/* General reset to remove margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0;
    background-image: url('DSC03003.JPG');
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops the image while keeping aspect ratio */
    object-position: center; /* Center the cropped image */
}

/* Header (Navigation Bar) */
header {
  background-color: #374B0E;
  color: white;
  padding: 10px 20px;
}

.navbar {
  display: flex;
  justify-content: center;
}

.navbar ul {
  list-style-type: none;
  margin: 10;
  padding: 20;
  display: flex;
}

.navbar ul li {
  margin: 0 15px;
}

.navbar ul li a {
  color:#ddd;
  text-decoration: none;
  padding: 10px 20px;
}

li a:hover {
  background-color:#647B3A;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 2s ease-in-out;
    color: black;
    background-color: rgb(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
    padding: 60px 20px;
    text-align: center;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 10px;
      }
      
      .section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
      }
      
      .section p {
        font-size: 1.2rem;
        margin-bottom: 20px;
      }

      .content-container {
        max-width: 800px;
        margin: 50px auto;
        background: rgba(0, 0, 0, 0.8);
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      }

      ul {
        list-style-type: none;
        padding: 0;
      }
      li {
        margin-bottom: 15px;
        font-size: 1.2rem;
        line-height: 1.6;
      }
  