body {
  background-color: #ffff;
  color: black;
  /*text-align: center;*/
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heading {
  margin-bottom: 2px;
  font-size: 25px;
  color: tomato;
  font-weight:bold;
}

.header {
  display: flex;
  align-items: center;
}

.errors,
.accuracy, .cpm, .wpm {
  background-color: #ccda46;
  height: 80px;
  width: 140px;
  margin: 8px;
  padding: 12px;
  border-radius: 20%;
  box-shadow: black 5px 8px 5px;
  text-align:center;
}
.timer{
  background-color: #ccda46;
  height: 100px;
  width: 100px;
  margin: 8px;
  padding: 12px;
  border-radius: 100%;
  box-shadow: black 1px 2px 3px;
  text-align:center;
	
}

.cpm, .wpm  {
  display: none;
}

.header_text {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  color:green;
}

.curr_time, .curr_errors,
.curr_accuracy, .curr_cpm,
.curr_wpm {
  font-size: 18px;
  text-align:center;
}

.quote {
  background-color: pink;
  font-family: 'kruti dev';
  font-size: 2.4rem;
  margin: 10px;
  padding: 25px;
  box-shadow: black 5px 8px 5px;
  text-align:justify;
}

.input_area {
  background-color: #f5f5c6;
  font-family: 'kruti dev'; 
  height: 150px;
  width: 98%;
  font-size: 2.4rem;
  font-weight: 600;
  margin: 15px;
  padding: 20px;
  border: 0px;
  box-shadow: black 5px 8px 5px;
    
  
}

.incorrect_char {
  color: red;
  text-decoration: underline;
}

.correct_char {
  color: green;
}

.restart_btn {
  display: none;
  background-color:tomato;
  font-size: 2rem;
  padding: 10px;
  border: 0px;
  box-shadow: black 5px 8px 5px;
  width:200px;
}
@font-face {
    font-family: 'kruti dev';
    src: url("../fonts/Kruti_Dev_010.ttf")format("truetype");
}