body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #e9f7ef;
    color: #2e7d32;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    text-align: center;
    padding: 20px;
    position: relative; /* Keeps content above the canvas */
    z-index: 1;
  }
  
  header h1 {
    font-size: 2rem;
    font-weight: bold;
  }
  
  header p {
    margin: 10px 0 20px;
    font-size: 1.2rem;
  }
  
  
  .buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  
  .btn {
    width: 300px;
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: #388e3c;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
  }
  
  .btn:hover {
    transform: scale(1.1);
    background-color: #2e7d32;
  }
  
  @media (max-width: 768px) {
    .btn {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
  }
  
  header img{
    width: 150px;
  }
  header li{
    list-style: none;
  }
  header ul{
    display: flex;
    justify-content: space-evenly;
    margin-top: 0px;
    padding-top:10px;
    padding-bottom: 5px;
    padding-left: 0px;
  }
  .homee{
    font-size: 22px;
    padding-top: 25px;
  }
  .homee a{
    text-decoration: none;
    color: #388e3c;
  }
  header{
    background-color: rgba(126, 204, 0, 0.037);
    margin: 0px;
    padding-top: 0px;
  }
  #bgCanvas{
    position: fixed;
    z-index: -1;
    top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }
  
  footer{
    text-align: center;
    padding-bottom: 30px;
  }
  footer a{
    font-weight: bold;
    color: purple ;
  }