body {
    font-family: Arial;
    font-size: 120%;
  }
  a {
    color:#b38ade;
    text-decoration: none;
    transition: color 0.1s;
  }
  a:hover {
    color:#b38ade;
  }
  button {
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    font-size: 100%;
    background-color: #b38ade;
    border-radius: 5px;
    padding: 2px 10px;
    color: white;
    border: 0;
    transition: background-color 0.1s;
  }
  button:hover {
    background-color: #b38ade;
  }
  .choices button {
    display: block;
  }
  input[type="text"] {
    font-size: 100%;
  }
  ol {
    padding-left: 0px;
    max-height: 400px;
    overflow: auto;
  }
  li {
    padding: 5px;
    list-style: decimal inside none;
  }
  li:nth-child(odd) {
    background-color: rgb(196, 211, 253);
  }
  .wrapper {
    margin: 100px auto 0 auto;
    max-width: 600px;
    background-color: white;
  }
  .hide {
    display: none;
  }
  .start {
    text-align: center;
  }
  .scores {
    position: absolute;
    top: 10px;
    left: 10px;
  }
  .feedback {
    font-style: italic;
    font-size: 120%;
    margin-top: 20px;
    padding-top: 10px;
    color: gray;
    border-top: 2px solid white;
  }
  .timer {
    position: absolute;
    top: 10px;
    color: red;
    right: 10px;
  }
