* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #b8c6db;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.quiz-container {
  background-color: white;
  border-radius: 10px;
  width: 400px;
  max-width: 100%;
  overflow: hidden;
}

.quiz-container .quiz-header {
  padding: 2rem;
}

.quiz-container ul {
  list-style-type: none;
  padding: 0;
}

.quiz-container ul li {
  margin: 1rem 0;
  font-size: 1.1rem;
}

.quiz-container button {
  display: block;
  width: 100%;
  padding: 1.5rem;
  color: white;
  background-color: cadetblue;
  border-radius: 8px;
  font-size: large;
  font-family: inherit;
  border: none;
}

.quiz-container button:hover {
  background-color: #538a8d;
  cursor: pointer;
}

h2 {
  text-align: center;
  padding: 2rem;
  margin: 0;
}
/*# sourceMappingURL=style.css.map */