* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 40px;

  background: radial-gradient(circle at top, #1b2338, #0d1117 60%);

  font-family: Arial, Helvetica, sans-serif;

  color: white;
}

.container {
  max-width: 900px;

  text-align: center;
}

.logo {
  width: 300px;

  image-rendering: pixelated;

  margin-bottom: 35px;

  filter: drop-shadow(0 0 20px rgba(255, 196, 0, 0.25));
}

h1 {
  font-size: 72px;

  letter-spacing: 8px;

  color: #ffca28;

  margin-bottom: 20px;
}

h2 {
  font-size: 34px;

  margin-bottom: 20px;
}

p {
  max-width: 760px;

  margin: auto;

  color: #9aa4b2;

  font-size: 20px;

  line-height: 1.8;
}

.coming {
  margin-top: 60px;

  color: #48d05f;

  font-size: 28px;

  font-weight: bold;

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}
