* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: navy;
  color: #fcbe37;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  min-height: 100vh;
}
h1 {
  font-family: "Unbounded", sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #efefef;
}

p {
  font-size: 1.25rem;
  max-width: 600px;
}
