.check-title {
  width: 100%;
  text-align: center;
}
  .check-title img {
    width: 100%;
  }

.check-box {
  text-align: center;
}
  .check-num {
    color: #3ADF00;
    font-size: 26px;
    font-weight: bold;
  }
  .check-question {
    text-align: center;
    font-size: 24px;
  }
  .check-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
    .check-option {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 45%;
      height: 70px;
      margin: 5px 0;
      border-radius: 10px;
      color: #fff;
      font-size: 21px;
    }
      .check-option:nth-of-type(1) {
        background: orangered;
      }
      .check-option:nth-of-type(2) {
        background: blue;
      }
      .check-option:nth-of-type(3) {
        background: orange;
      }
      .check-option:nth-of-type(4) {
        background: skyblue;
      }
  .check-prev-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 40px;
    margin: 5px auto;
    border-radius: 10px;
    background: gray;
    color: #fff;
  }
  .check-box a,
  .check-result-bottom a {
    text-decoration: none;
  }

/* result */
.check-result-title {
  text-align: center;
  color: red;
  font-size: 32px;
  font-weight: bold;
}
.check-result-text {
  text-align: center;
  font-size: 18px;
}
.check-result-separator {
  margin-top: 10px;
  padding: 10px 0;
  border-top: double 5px #62B6CC;
  border-bottom: double 5px #62B6CC;
  text-align: center;
  font-weight: bold;
}