* {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    max-width: 100%;
    background-color: white;
  }
  
  header {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
  }
  
  body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      text-align: center;
    }
  
  #scoreDisplay {
    float: left;
    color: rgb(153, 27, 211);
  }
  
  #scoreDisplay:hover {
    background-color: #ddd;
    color: black;
  }
  
  #timerDisplay {
    color: rgb(153, 27, 211);
    float: right;
    }
  
  #timerDisplay:hover
  {
    background-color: #ddd;
    color: black;
  }
  
  button {
      background-color: rgb(153, 27, 211);
      color: white;
      width: 50vw;
      border-radius: 15px;
      height: 50px;
      font-size: larger;
  }
  
  .container {
    text-align: center;
    font-size: 60px;
    margin-top: 0px;
  }