html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #222;
  font-family: Arial, sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1 {
  font-size: 4em;
  margin: 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

p {
  font-size: 1.2em;
  margin-top: 10px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

a {
  all: unset;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}