body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: system-ui, sans-serif;
  background: #121212;
  color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* 🔥 Push content toward top */
}

.container {
  text-align: center;
  margin-top: 100px; /* 🔥 Control how high you want it */
  max-width: 90%;
}

h1 {
  color: #00e0ff;
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

p {
  font-size: 1.2em;
  line-height: 1.4em;
}

