html,
body {
  font-family: Gibson, -apple-system, BlinkMacSystemFont, Noto Sans, Helvetica,
    Arial, sans-serif;
}
body {
  margin: 5px;
}
#content {
  max-width: 300px;
  height: 300px;
  display: flow-root;
  position: relative;
  border: 3px solid #007cbf;
  border-radius: 15px;
}
.logo {
  padding-left: 15px;
  padding-top: 15px;
}
.logo > img {
  width: 185px;
}

.question,
.statistics {
  display: none;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

h2 {
  color: #002351;
  line-height: 1.2;
  font-weight: 700;
  font-size: 21px;
}

ul {
  list-style: none;
  display: flex;
  padding-left: 0px;
  flex-direction: column;
}

ul li {
  margin-right: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

ul li {
  position: relative;
  margin-bottom: 10px;
  margin-left: 10px;
  font-weight: 500;
}

.answer-options li {
  margin-left: 20px;
  cursor: pointer;
}
.answer-options li:hover {
  color: #007cbf;
}
.answer-options li:before {
  content: "";
  position: absolute;
  left: -19px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border: 1px solid #919191;
  border-radius: 50%;
}

.answer-options li:hover:before {
  border: 1px solid #007cbf;
}

.answer-options li:active::before {
  background-color: #007cbf;
}
.answer-options li:active {
  animation: moveUpDown 0.3s alternate infinite;
}

.question-body {
  position: absolute;
  top: 45px;
  left: 15px;
  right: 5px;
}

.button {
  align-items: center;
  background: #002351;
  border: 1px solid #002351;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 0.375em 0.75em;
  text-align: center;
  text-decoration: none;
}
.button:hover {
  background: #007cbf;
  border: 1px solid #007cbf;
}

.page_title {
  color: #007cbf;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: -45px;
  text-transform: uppercase;
  padding-left: 15px;
}

.text-blue {
  color: #002351 !important;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-5px);
  }
}
