/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  background-color: #000; /* black background */
  color: #fff;           /* white text */
  font-family: Arial, Helvetica, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container */
.container {
  text-align: center;
}

/* Title */
h1 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Subtitle */
.subtitle {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #ccc; /* softer white/gray */
}
