body {
  background-color: black;  /* black background */
  color: white;             /* white text */
  font-family: Verdana;
  font-size: 24px;          /* big text */

  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;   /* stack content vertically */
  justify-content: center;  /* vertical center */
  align-items: center;      /* horizontal center */
  text-align: center;
}

.logo {
  max-width: 200px;  /* smaller logo for this page */
  height: auto;
  margin-bottom: 30px;
}

h1 {
  font-size: 48px;
  margin-bottom: 40px;
}

.game-links p {
  margin: 20px 0;
}

.game-links a {
  color: #00aaff;         /* bright blue links */
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
}

.game-links a:hover {
  text-decoration: underline;
}
