body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  font-family: 'Cutive Mono', monospace;
  background-color: #333;
}

.timer-container {
  text-align: center;
  background-color: #fff;
  padding-top: 20px;
  max-width: 600px;
  margin: 0 auto;
  min-height: 100vh;
}

h1 {
  margin-bottom: 30px;
  padding: 10px;
}

.step-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.step {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #000;
  background-color: rgb(244, 242, 234, 0.5);
  padding: 5px 0;
  transition: 750ms padding, 750ms font-size;
}

.step:nth-of-type(1) {
  border-top: 1px solid #000;
}

.step.active {
  background-color: #000;
  color: #fff;
  padding: 40px 0;
  font-size: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.step-description {
  flex-grow: 1;
  text-align: center;
  margin: 5px;
}

button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 0.25rem;
  border: 1px solid #000;
  margin-bottom: 20px;
  font-family: 'Cutive Mono', monospace;
}

button:disabled {
  display: none;
}

button.active,
button:hover {
  background-color: #fff;
  color: #000;
}




#countdown {
  position: relative;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 10px;
  height: 40px;
  width: 40px;
  text-align: center;
}

#countdown-number {
  color: white;
  display: inline-block;
  line-height: 40px;
}

svg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  transform: rotateY(-180deg) rotateZ(-90deg);
}

svg circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: white;
  fill: none;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: countdown;
}

@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }

  to {
    stroke-dashoffset: 226px;
  }
}


.hide {
  display: none;
}