@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500&family=Share+Tech+Mono&display=swap");

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  background-color: #a3da8d;
}

h1 {
  text-align: center;
  letter-spacing: 3px;
}

.stopwatch {
  text-align: center;
  font-family: "Share Tech Mono", monospace;
  font-size: 0px;
  color: #676fa3;
  /* word-spacing: 0px; */
}

.stopwatch span{
  font-size: 125px;
}

#milliseconds{
  font-size: 45px;
}

.buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.btn:hover .btn-slide-show-text1 {
  margin-left: 65px;
}
.btn-shadow {
  display: inline-block;
  margin: 5px;
  font-weight: 500;
  line-height: 24px;
  color: rgb(255, 255, 255);
  position: relative;
  text-align: center;
  background: none;
  outline: none;
  border: none;
}
.btn-shadow::before {
  content: "";
  height: 40px;
  position: absolute;
  bottom: -1px;
  left: 10px;
  right: 10px;
  z-index: 0;
  border-radius: 2em;
  filter: blur(14px) brightness(0.9);
}
.btn-shadow span {
  display: inline-block;
  transform-style: preserve-3d;
  transition: all 0.3s ease-out 0s;
  padding: 16px 60px;
  border-radius: 50em;
  position: relative;
  z-index: 2;
  will-change: transform, filter;
}
.btn-shadow:hover {
  color: rgb(255, 255, 255);
}
.btn-shadow:hover span {
  filter: brightness(0.9) contrast(1.2);
  transform: scale(0.96);
}
.btn-shadow:hover::before {
  bottom: 8px;
  filter: blur(6px) brightness(0.8);
  left: 15px;
  right: 15px;
}
.btn-shadow--black span {
  background: rgb(51, 51, 51);
}

.laps {
  display: flex;
  /* text-align: center; */
  margin-top: 25px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.laps-content {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: rgb(51, 51, 51);
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #f5f5f5;
  background-color: black;
  padding: 10px 0px;
  font-size: min(2vw, 15px);
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
