body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  line-height: 1.8;
}

.container {
  max-width: 800px;
  padding: 2rem;
}

.infinity {
  width: 150px;
  height: auto;
  margin-bottom: 0.5rem;
  animation: pulse 3s infinite ease-in-out;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  margin: 1rem 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

ul li {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

em {
  font-style: italic;
  display: block;
  margin: 1.5rem 0;
  font-size: 1rem;
  opacity: 0.8;
}

.tagline {
  margin-top: 2rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #ccc;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}
