body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'MS PMincho', sans-serif;
}

.wrapper {
  width: 680px;
  margin: 0 auto;              /*   align Center   */
  height: 100%;
  /* border: 5px solid red; */
}

#start {
  background-color: #3168a0;
  padding-bottom: 60px;
  width: 100%;
  border-radius: 2%;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  /* border: 5px solid yellow; */
}

#start > h1 {
  text-align: center;
  padding-top: 25px;
  font-size: 35px;
  letter-spacing: 13px;
  /* border: 5px solid yellowgreen; */
}

.question {
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  padding: 20px;
  /* border: 5px solid orange; */
}

.niveaus {
  padding: 10px 0 0 0;
  font-size: 25px;
  /* border: 5px solid red; */
}

.niveaus li {
  margin-left: 180px;
  width: 33%;
  list-style: none;
  line-height: 50px;
  text-align: left;
  /* border: 5px solid lightgreen; */
}
.niveaus li:hover {
  cursor: pointer;
  color: #FBCB43;
}

#info {
  width: 100px;
  font-size: 18px;
  position: relative
}

#info:hover {
  cursor: pointer;
  background-color: #FBCB43;
}

.webstatcode {
  visibility: hidden;
}

/*  Voor Mobiele Telefoons (iPhone13) */
@media only screen and (max-width: 640px) {
.wrapper {
  width: 380px;
}

.niveaus li {
  margin-left: 40px;
  width: 65%;
  text-align: left;
  /* border: 2px solid red; */
}

.niveaus li:hover {
  color: inherit;
}

#info:hover {
  background-color: #f0f0f0;
}

}