body {
   margin: 0;
   padding: 0;
   font-family: 'Poppins', sans-serif;
}

header {
   position: fixed;
   /* Add this to make the header fixed */
   top: 0;
   /* Align the header to the top of the viewport */
   width: 100%;
   background-color: #367449;
   color: white;
   display: flex;
   align-items: center;
   padding: 10px;
   z-index: 100;
   box-sizing: border-box;
   /* Ensure the header is above other elements */
}

.logo {
   font-size: 24px;
   font-weight: bold;
   margin-right: auto;
   padding: 10px;
}

.hamburger {
   display: none;
   font-size: 24px;
   cursor: pointer;
   position: absolute;
   top: 20px;
   right: 20px;
   z-index: 101;
   /* Ensure the hamburger icon is above other elements */
}

nav ul {
   list-style-type: none;
   margin: 0;
   padding: 0;
}

nav li {
   display: inline;
   margin-right: 20px;
}

nav li a {
   color: white;
   text-decoration: none;
   font-weight: bold;
   margin-right: 5px;
}

/* nav li a:hover {
   text-decoration: underline;
} */

main {
   padding: 100px 20px 20px;
   /* Add some padding to the top of the main content to push it below the fixed header */
}

section {
   margin-bottom: 50px;
}

/* Footer Styles */
footer {
   background-color: #367449;
   color: white;
   padding: 20px;
}

.footer-container {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
}

.footer-menu {
   display: flex;
   align-items: center;
}

.footer-menu ul {
   list-style-type: none;
   margin: 0;
   padding: 0;
}

.footer-menu li {
   margin-right: 20px;
}

.footer-menu li:last-child {
   margin-right: 0;
}

.footer-menu a {
   color: white;
   text-decoration: none;
   font-weight: bold;
}

.footer-menu a:hover {}

.social-icons {
   display: flex;
   align-items: center;
}

.social-icons a {
   color: white;
   text-decoration: none;
   font-size: 24px;
   /* Increase the font size for bigger icons */
   margin-left: 15px;
   /* Add some spacing between icons */
}

.social-icons a:first-child {
   margin-left: 0;
   /* Remove left margin from the first icon */
}

/* Center the copyright line */
footer p {
   margin-top: 10px;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
   .footer-menu {
      margin-bottom: 10px;
   }

   .footer-menu li {
      /* margin-right: 20px; */
      text-align: center;
      padding: 10px;
      margin: 0px;
   }

   .footer-menu,
   .social-icons {
      flex-basis: 100%;
   }
}

/* Your existing CSS styles here */

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
   header {
      padding: 10px;
   }

   .logo {
      font-size: 20px;
   }

   nav {
      display: none;
      flex-direction: column;
      background-color: rgba(54, 116, 73, 0.9);
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      padding: 20px;
      height: 100%;
   }

   nav.active {
      display: flex;
   }

   nav ul {
      display: flex;
      flex-flow: column
   }

   nav li {
      margin: 10px 0;
   }

   .hamburger {
      display: block;
      /* Ensure the hamburger icon is above other elements */
   }

   main {
      padding-top: 70px;
   }

   .footer-container {
      flex-direction: column;
   }

   .social-icons a {
      font-size: 28px;
   }
}

.ytp-pause-overlay {
   display: none;
}