body {
  background-color: black;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  color: blanchedalmond;
  border-radius: 20px;
  box-shadow: 0px 0px 50px purple;
}
h1,
h2 {
  font-size: 30px;
}
.watch {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-family: "Digital-7";
  width: 250px;
  height: 250px;
  background: black;
  border-radius: 50%;
  box-shadow: 0px 0px 20px #4195fc;
}

button {
  font-size: 1.2rem;
  background: black;
  color: blanchedalmond;
  width: 80px;
  height: 80px;
  margin: 1rem;
  border-radius: 50%;
  border: 4px solid purple;
  cursor: pointer;
}
button:hover {
  color: black;
  background-color: blanchedalmond;
  border: 4px solid purple;
}
button:active {
  transform: scale(1.1);
}
.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.laps-container ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 2rem;
  color: blanchedalmond;
  font-family: "Digital-7";
}
.laps-container ul li {
  padding: 0.5rem 2rem 0.5rem 2rem;
  margin: 0.1rem;
  text-align: start;
  font-size: 3rem;
  border: 1px solid white;
  border-radius: 2rem;
}
.laps-container ul li span {
  font-family: "Times New Roman", Times, serif;
  font-size: 2.8rem;
}
