.timers {
  width: 100vw;
  height: 100vh;
  position: fixed;
  margin: 0;
  top: 0;
  left: 0;
  scroll-snap-type: y mandatory;
  z-index: -1;
}

.timers::-webkit-scrollbar {
  display: none;
}

.timer {
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin-bottom: 10%;
  justify-content: center;
  text-align: center;
  width: 100vw;
  user-select: none;
}

.display-number {
  transition: opacity 0.2s;
}

.big-time {
  cursor: pointer;
  font-weight: bold;
  font-size: 15em;
  user-select: none;
  -webkit-user-select: none;
}

.detailed-time {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.laps {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 10px;
  list-style: none;
}
