body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-image: url(./images/coding-background.jpg);
  }
  
  a {
    color: white;
    display: block;
  }

  h1 {
      color: red;
  }

  h2 {
      color: red;
  }
  
  p {
      color: white;
  }
 
  button {
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    font-size: 100%;
    background-color: red;
    border-radius: 5px;
    padding: 3px 8px;
    color: black;
    border: 0;
    transition: background-color 0.1s;
  }
  
 
  .choices button {
    display: block;
  }
  
  
  ol {
    padding-left: 0px;
    max-height: 400px;
    overflow: auto;
  }
  
  li {
    padding: 5px;
    list-style: decimal inside none;
  }
  

  .container {
    margin: 100px auto 0 auto;
    max-width: 600px;
  }
  
  .hide {
    display: none;
  }
  
  .begin {
    text-align: center;
  }
  
  .score {
    position: absolute;
    top: 10px;
    left: 10px;
  }
  
  .output {
    font-style: Georgia, 'Times New Roman', Times, serif;
    font-size: 100%;
    margin-top: 20px;
    padding-top: 10px;
    color: white;
    border-top: 2px solid red;
  }
  
  .timer {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
  }
  
  #user-scores {
      color: white;
  }