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

html,
body {
  height: 100%;
  background-color: #000;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Container */
.container {
  padding: 20px;
}

/* Title */
h1 {
  font-size: clamp(2rem, 8vw, 6rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 2s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
