/* Reset & Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #0d1117;
  color: #c9d1d9;
  font-family: 'Courier New', monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

/* Terminal Box */
main.terminal {
  background: #161b22;
  border: 1px solid #30363d;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(88,166,255,0.2);
  max-width: 600px;
  width: 100%;
}

/* Text */
h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #58a6ff;
}

p {
  font-size: 1.1rem;
  color: #8b949e;
  margin: 0.5rem 0;
}

.blink {
  animation: blink 1s step-start infinite;
  color: #58a6ff;
  font-weight: bold;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #6e7681;
  opacity: 0.7;
}

/* Optional: Media Query für große Screens */
@media (min-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  p {
    font-size: 1.2rem;
  }
}
