
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  background-color: #122734;
/*  background: radial-gradient(circle at center, #122734 0%, #0d1a22 70%); */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}
.container {
  max-width: 90%;
  width: 400px;
  padding: 20px;
}

/* Fade-in animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes logoThrow {
  0% {
    opacity: 0;
    transform: scale(1.5) translateY(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.25) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDelayed {
  0% { opacity: 0; }
  60% { opacity: 0; }
  100% { opacity: 1; }
}

.logo {
  max-width: 220px;
  margin-bottom: 20px;
  padding: 0;
  opacity: 0;
  transform: scale(0.6);
  animation: logoThrow 0.55s cubic-bezier(.22,.61,.36,1) forwards;
}

h1 {
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-top:0;
  margin-bottom: 0.5rem;
  margin-left: auto; margin-right: auto;
  line-height: .75;
  padding: 0;
  opacity: 0;
  animation: fadeInDelayed 1.4s ease forwards;
/*  font-optical-sizing: auto; */
  font-weight: 900;
  font-style: normal;
/*  font-variation-settings: */
}

.primary {
  color: #fff;
}

.secondary {
  color: #628089;
}

div.links {
  margin-top: 2rem;
}
.links img {
  max-width: 40px;
  margin-top: 5px;
  padding: 5px;
}

p.tagline {
  font-size: .75rem;
  opacity: 0;
  animation: fadeInDelayed 3s ease forwards;
  margin-top: 0;
  margin-bottom: 0rem;
  letter-spacing: 4.9px;
  color: #93c1cd;
  text-align: center;
}

a {
  color: #7fc2ff;
  text-decoration: none;
}

a:hover {
  color: #ffd27f;
}

.links p, .newsletter p {
  opacity: 0;
  animation: fadeInDelayed 5s ease forwards;
}

.newsletter {
  animation: fadeInDelayed 6s ease forwards;
}

/* Button + field styling */
.email-form {
  opacity: 0;
  animation: fadeInDelayed 2.3s ease forwards;
  margin-top: 10px;
}

input[type="email"] {
  width: 80%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  margin-bottom: 10px;
  font-size: 1rem;
}

button {
  padding: 10px 20px;
  background: #93c1cd;
  border: none;
  color: #122734;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

button:hover {
  background: #ffdd55;
}