
body {
  margin: 0;
  height: 100vh;
  width: 100%;
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
}

h1 {
  font-family: 'Climate Crisis', sans-serif;
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 400px) {
  h1 {
    font-size: 1.5rem;
  }
}

@keyframes pulsate {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}
p {
  font-size: 1.2rem;
  font-family: 'Space Grotesk', sans-serif;
}
a {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-bottom 0.3s ease;
  animation: pulsate 2s ease-in-out infinite;
}

a:hover {
  border-bottom: 6px solid white;
}
