body {
  height: 100%;
  width: 100vw;
  padding: 0;
  margin: 0;
}

.settingsElement {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 16px;
}
.settingsElement .title {
  font-size: 24px;
  margin-bottom: 16px;
}
.settingsElement .settings {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.settingsElement .settings .setting {
  height: 40px;
  width: 40px;
  border-color: black;
  border: 1px solid;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.settingsElement .settings .setting.actief {
  background-color: darkblue;
  color: white;
}

.opdrachtElement {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.opdrachtElement #maakOpdrachtKnop {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 40px;
  background-color: lightseagreen;
  color: white;
  font-size: 24px;
  cursor: pointer;
  margin: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.opdrachtElement #maakOpdrachtKnop.hidden {
  display: none;
}
.opdrachtElement .opdrachtContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.opdrachtElement .opdrachtContainer #opdracht {
  margin: 0px auto;
  font-size: 100px;
}
.opdrachtElement .opdrachtContainer #timer {
  font-size: 30px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid lightblue;
  margin: 20px auto;
}
.opdrachtElement .opdrachtContainer #antwoordKnop {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 40px;
  background-color: lightseagreen;
  color: white;
  font-size: 24px;
  cursor: pointer;
  margin: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.opdrachtElement .antwoordContainer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.opdrachtElement .antwoordContainer #antwoord {
  margin: 0px auto 20px;
  font-size: 150px;
}
.opdrachtElement .antwoordContainer .evaluatieContainer {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.opdrachtElement .antwoordContainer .evaluatieContainer .evaluatie {
  font-size: 24px;
  color: white;
  padding: 8px 20px;
  cursor: pointer;
}
.opdrachtElement .antwoordContainer .evaluatieContainer .evaluatie.goed {
  background-color: green;
}
.opdrachtElement .antwoordContainer .evaluatieContainer .evaluatie.fout {
  background-color: red;
}
.opdrachtElement .uitkomstContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 200px;
}
.opdrachtElement .uitkomstContainer .resetKnop {
  font-size: 20px;
  padding: 8px 20px;
  border: 1px solid black;
  cursor: pointer;
}
.opdrachtElement .hidden {
  display: none;
}/*# sourceMappingURL=style.css.map */