body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
  }
  
  .container {
    text-align: center;
  }
  
  .logo {
    max-width: 95%;
    margin-bottom: 20px;
  }
  
  .button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .button {
    background-color: #6c9e1f; /* Green color */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .button:hover {
    background-color: #5c8a17; /* Darker green color on hover */
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .button {
      padding: 15px 30px;
      font-size: 20px;
    }
  }
  
  footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f4f4f4; /* Match the page background */
  text-align: center;
  padding: 10px 0;
}

.footer-menu a {
  color: #6c9e1f; /* Green color */
  text-decoration: none;
  margin: 0 15px;
  font-size: 16px;
}

.footer-menu a:hover {
  text-decoration: underline;
}
