/* Front Quiz code  Scores, start bottom*/

body {
    
    font-family:Arial, Helvetica, sans-serif
}
  .wrapper {
    margin: 100px auto 0 auto;
    max-width: 600px;
    font-size: 25px;
   
  }
  
  .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:#d100d1;
    border-top: 2px solid rgb(201, 193, 193);
  }
  
  .timer {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  
  a {
    color: black;
    text-decoration: none;
    transition: color 0.1s;
  }
  
  a:hover {
    color: black;
  }
  
  button {
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    font-family: "Architects Daughter", cursive;
    font-size: 100%;
    background-color: #d100d1;
    border-radius: 5px;
    padding: 2px 10px;
    color: white;
    border: 0;
    transition: background-color 0.1s;
  }
  
  button:hover {
    background-color: black;
  }
  
  /* Hide section, back end */
  .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: #dfdae7;
  }