

h1{
    color: #015201;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: "Quicksand", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
img{
    height: 200px;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}



.contact {
  margin-top: 40px;
  color: #015201;
}

.contact h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.contact ul {
  list-style: none;
  padding: 0;
}

.contact li {
  margin: 5px 0;
}

.contact a {
  color: #015201;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}
