html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  /* min-height: 100vh; */
  background: #ff69b4;
  color: white;
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-weight: 300;
  font-size: 1.75rem;
}

@media (max-width: 600px) {
  body {
    font-size: 1.25rem;
  }
}

.container {
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 40rem;
  text-align: center;
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  /* justify-content: center; */
}

.center-logo {
  margin: 0 auto;
  max-width: 20rem;
  /* max-height: 30rem; */
  display: block;
} 

p a {
  color: inherit;
  text-decoration: underline;
}

.light-text {
  color: rgba(255, 255, 255, 0.5)
}
.light-text a:hover {
  color: rgba(255, 255, 255, 0.75)
}


.dance {
  animation: jitter 1s forwards;
  display: inline-block;
}

@keyframes jitter {
  0% { transform: translateY(0px); }
  10% { transform: translateY(-2px); }
  20% { transform: translateY(1px); }
  30% { transform: translateY(-3px); }
  40% { transform: translateY(2px); }
  50% { transform: translateY(-1px); }
  60% { transform: translateY(3px); }
  70% { transform: translateY(-2px); }
  80% { transform: translateY(1px); }
  90% { transform: translateY(-1px); }
  100% { transform: translateY(0px); }
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0;
}

.newsletter-form input[type="email"] {
  padding: 0.75rem 1rem;
  border: 0.15rem solid white;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  max-width: 20rem;
  box-sizing: border-box;
  border-radius: 2rem;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input[type="submit"] {
  padding: 0.75rem 2rem;
  border: 0.15rem solid white;
  background: white;
  color: #ff69b4;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 2rem;
}

.newsletter-form input[type="submit"]:hover {
  transform: scale(1.05);
}
