*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  font-family: "Montserrat", sans-serif;
  background-color: #333;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.main .metronome {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
}
.main .metronome__blink {
  margin: 20px;
  width: 30px;
  height: 30px;
  background-color: red;
  border-radius: 50%;
  cursor: pointer;
}
.main .metronome__blink:hover {
  background-color: gold;
}
.main .metronome .pulse {
  background-color: gold;
}
.main .metronome .tempo-bar {
  width: 100%;
}
.main .metronome__parameters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main h1 {
  margin-bottom: 10px;
}
.main .btn {
  padding: 1em 2em;
  margin: 3px;
  border: none;
  background-color: #ddd;
  transition: background-color 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.main .btn:hover {
  background-color: #929292;
}
.main .tap-tempo {
  width: 95%;
  transition: background-color 0.3s;
  cursor: pointer;
}
.main .tap-tempo:active {
  background-color: red;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}/*# sourceMappingURL=style.css.map */