
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0b0b0f;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 40px 20px;
}

.logo {
  max-width: 160px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.cta {
  background: #ff007a;
  color: white;
  padding: 14px 30px;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  margin-top: 30px;
  transition: background 0.3s;
}

.cta:hover {
  background: #ff3399;
}

.tweet {
  margin-top: 40px;
}
