@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #002b00, #2c6512);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.wrapper {
  padding: 20px;
  width: 100%;
  max-width: 700px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: fadeIn 1.2s ease-in-out;
}

h1 {
  font-size: 26px;
  color: #388e3c;
  margin-bottom: 5px;
}

h2 {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 400;
}

.logo {
  width: 360px;
  margin-bottom: 20px;
}

.info p {
  line-height: 1.6;
  margin: 10px 0;
}

.links a {
  color: #2e7d32;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links a:hover {
  color: #1b5e20;
  text-decoration: underline;
}

footer {
  margin-top: 25px;
  font-size: 13px;
  color: #888;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

#email {
  margin-top: 10px;
  font-weight: 500;
  color: #2e7d32;
}

#email a {
  color: #2e7d32;
  text-decoration: none;
}

#email a:hover {
  text-decoration: underline;
}