body {
  font-family: sans-serif;
}

.timer-wrap {
  display: grid;
  place-items: center;
  margin-top: 30px;
}

.timer-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.timer-controls input {
  padding: 10px;
  font-size: 16px;
  width: 130px;
}

.timer-controls button {
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
}

.timer-message {
  text-align: center;
  margin-bottom: 12px;
  font-size: 16px;
}

.base-timer {
  position: relative;
  width: 600px;
  height: 600px;
}

.base-timer__svg {
  transform: scaleX(-1);
}

.base-timer__circle {
  fill: none;
  stroke: none;
}


.base-timer__path-remaining {
  stroke-width: 7px;
  stroke-linecap: round;
  transform: rotate(90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
  stroke: currentColor;
}

.base-timer__path-remaining.green {
  color: rgb(70, 55, 202);
}

.base-timer__path-remaining.orange {
  color: rgb(91, 150, 206);
}

.base-timer__path-remaining.red {
  color: rgb(255, 126, 126);
}

.base-timer__label {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
}

.hidden {
  display: none;
}
.timer-question-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.timer-question-wrap textarea {
  width: 500px;
  max-width: 90vw;
  min-height: 100px;
  padding: 12px;
  font-size: 18px;
  resize: vertical;
}

.timer-question-wrap button {
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
}
