body {
  font-family: monospace;
  font-size: 16px;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  line-height: 1.1;

  background-color: #121212; /* dark background */
  color: #e0e0e0;           /* light text */
}

.welcome {
  text-align: center;
  font-size: 1.1rem;
  padding: 20px;
  background: #1e1e1e; /* slightly lighter card background */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  max-width: 90%;
}

.welcome a {
  color: #4da6ff; /* link blue for contrast */
  text-decoration: none;
  font-weight: bold;
}

.welcome a:hover {
  text-decoration: underline;
  color: #82c7ff; /* lighter hover */
}

@media screen and (min-width: 840px) {
  .welcome {
    font-size: 1.5rem;
    line-height: 1.5;
    max-width: 760px;
  }
}