@import 'normalize.css';

html {
  /* Borrowed from Bootstrap: */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

body {
  background-color: lightblue;
}

main {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  text-align: center;
}

article {
  flex: 1;
  width: 70vw;
  max-width: 650px;
  background-color: #eee;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 2px solid #aaa;
}
