@import url("https://fonts.googleapis.com/css2?family=National+Park:wght@200..800&display=swap");

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

html,
body {
  background: #fafafa;
  font-family: "National Park", sans-serif;
  height: 100%;
  width: 100%;
  font-size: 24px;
}

#questionDisplay {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-align: center;
  text-wrap: balance;
  animation: fadeIn 2.5s ease;
  font-weight: 400;
  max-width: 40ch;
  margin: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
