/* Global resets and basic styling */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Use the light beige from the logo background */
body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,254,254,255);
  font-family: 'Shadows Into Light', cursive;
  color: #222;
}

.container {
  text-align: center;
}

.logo {
  width: 45vmin;
  max-width: 320px;
  height: auto;
}

h1 {
  margin: 1rem 0 0;
  font-size: 2.75rem;
  letter-spacing: 0.05em;
}