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

/* Pixel font global */
body {
  background: #ec1f27;
  color: white;
  font-family: 'Press Start 2P', cursive;
}

header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Ana başlık */
header h1 {
  font-size: 3rem; /* küçülttük */
  color: white;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 1px; /* harf arası azaltıldı */

  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}
/* slogan */
.tagline {
  margin-top: 25px;
  font-size: 1rem;
  text-align: center;
  opacity: 0.9;
}

/* coming soon */
.coming {
  margin-top: 40px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  opacity: 0.8;
}
