body {
    background-color: #141414;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
  }

  #stopwatch {
    background-color: #121212;
    width: 25%;
    padding: 20px;
    /* border: solid 1px whitesmoke; */
    border-radius: 10px;
    text-align: center;
    box-shadow: 10px 5px 10px rgb(0, 0, 0);
  }

  #timer {
    font-size: 2em;
    margin-bottom: 10px;
  }

  button {
    background-color: #1c1c1c;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    margin: 5px;
    font-size: 1em;
    cursor: pointer;
  }

  button:hover {
    background-color: #3a3a3a;
  }

  #lapList {
    text-align: center;
  }
