body { /* Visual */
    background: black;
  }
  
  #display {
    font-family: monospace;
    font-size: 120px;
    color: red;
  
    /* Typography */
    text-align: center;
  
    /* Visual */
    background: black;
  }
  
  #wrapper {
    /* Box-model */
    width: 500px;
  
    /* Positioning */
    margin: 50px auto 0;
  }
  
  #buttons { /* Typography */
    text-align: center;
  }
  
  button {
    width: 100px;
  
    /* Box-model */
    height: 50px;
  }
  
  #laps {
    width: 100%;
    height: 200px;
  
    /* Positioning */
    margin-top: 20px;
  
    /* Box-model */
    overflow: auto;
  
    /* Typography */
    text-align: center;
  
    /* Visual */
    background: white;
  }
  