@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

@font-face {
  font-family: 'Bebas Neue';
  src: url('./fonts/bebasneue-book-webfont.woff');
}

body {
  background-color: #2B2A30;
  position: relative;
  height: 100vh;
  width: 100vw;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.counterBody {
  position: relative;
  color: white;
  width: 500px;
  height: 500px;
  margin: auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,57,63,1) 0%, rgba(23,23,26,1) 100%);
  display: grid;
  place-items: center;
}

.timer {
  position: relative;
  font-family: 'Bebas Neue';
  font-size: 196px;
}

.start, .pause, .restart {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  letter-spacing: 9px;
  position: absolute;
  bottom: 110px;
}

.start, .pause, .restart:hover {
  cursor: pointer;
}

.pause, .restart {
  display: none;
}

.settings {
  position: absolute;
  bottom: 55px;
}

.progress {
  background: conic-gradient(#900A0A 0deg 360deg);
  padding: 10px;
  border-radius: 50%;
  filter:
    drop-shadow(5px -16px 50px rgba(255, 255, 255, 0.15))
    drop-shadow(-5px 15px 44px #000);
  
}

.setInput {
  position: absolute;
  display: none;
  place-items: center;
  height: 500px;
  width: 500px;
  background-color: #2B2A30;
  border-radius: 50%;
  z-index: 2;
}

.changeForm {
  font-family: 'Bebas Neue';
  text-align: center;
  font-size: 196px;
}

.setMinutes, .setSeconds {
  width: 150px;
  font-family: 'Bebas Neue';
  background-color: #2B2A30;
  border: none;
  color: white;
  font-size: 196px;
  border-bottom: 2px solid white;
  border-top: 2px solid white;
  margin-bottom: 2rem;
  text-align: center;
}

.changeTime {
  display: block;
  margin: auto;
  padding: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  background-color: #2B2A30;
  border: none;
  color: white;
  font-weight: 700;
  letter-spacing: 9px;
}