html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #333333;
  color: #fff;
  font-family: system-ui, sans-serif;
}

.content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.splash {
  max-width: 640px;
  padding: 2rem;
}

.splash img {
  max-width: 260px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}


.splash h1 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.splash p {
  margin: 0.5rem 0;
  line-height: 1.5;
  opacity: 0.9;
}

.splash p {
  color: #ccc;
}

a {
	color: #90caf9;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

nav {
	padding: 0 1rem;
	margin-top: 3rem;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	color: #888;
	font-size: 0.85rem;
}

footer {
  width: 100%;
  font-size: 0.85rem;
  color: #888;
  padding: 1rem 0;
}