/* A minimal stylesheet: center a heading on the page. */
body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: system-ui, sans-serif;
}

h1 {
  color: #059669;
}
