body {
  font-family: 'Poppins', sans-serif;
  color: black;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heading {
  margin-bottom: 20px;
  font-size: 3rem;
  color: black;
}

.header {
  display: flex;
  align-items: center;
}

.timer, .errors,
.accuracy, .cpm, .wpm {
  background-color: #086ad7;
  height: 108px;
  width: 108px;
  margin: 8px;
  padding: 12px;
  border-radius: 13%;
  box-shadow: #e6e6e6 5px 8px 5px;
  color: white;
  align-items: center;
}

.cpm, .wpm  {
  display: none;
}

.header_text {
  text-transform: uppercase;
  font-size: 0.6rem;
  font-weight: 600;
}

.curr_time, .curr_errors,
.curr_accuracy, .curr_cpm,
.curr_wpm {
  font-size: 1.75rem;
}

.quote {
  background-color: #086ad7;
  font-size: 1.5rem;
  margin: 10px;
  padding: 25px;
  box-shadow: #e6e6e6 5px 8px 5px;
  color: white;

}

.input_area {
  background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%);
  height: 80px;
  width: 50%;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 15px;
  padding: 20px;
  border: 0px;
  box-shadow: #e6e6e6 5px 8px 5px;
}

.incorrect_char {
  color: #ef343b;
  text-decoration: underline;
}

.correct_char {
  color: #e6e6e6;
}

.restart_btn {
  display: none;
  background-color: #086ad7;
  font-size: 1.5rem;
  padding: 10px;
  border: 0px;
  box-shadow: #e6e6e6 5px 8px 5px;
  color: white;
  border-radius: 13%;
}