* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/bg2.jpg') no-repeat center center/cover;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.9; /* Slight transparency to blend with green background */
}

.content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8); /* dark transparent overlay */

  /* Animation */
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

/* Define keyframes */
@keyframes fadeIn {
    from{opacity:0;}
  to {opacity: 1;}
    }

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
    max-width: 800px;
}

h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    max-width: 1200px;
    color: rgba(55, 119, 40, 0.9);
}

p {
  font-size: 1.1rem;
  max-width: 800px;
}

a {
  font-size: 1.1rem;
  color: rgba(55, 119, 40, 0.9);
}