html{

}
body{
height: 100%;
  margin: 0;
}
._start{
  background-image: url('../img/website-backgrounds.jpg');
  background-size: cover;
  width: 100%;
  height: 100%;
  position: fixed;
}
._start ._box{
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: auto;
  transform: translateY(-50%);
}
.start_btn{
border: none;
outline: none;
padding: 7px 10px;
width: 200px;
border-radius: 2px;
font-family: monospace;
font-size: 20px;
background: #03A9F4;
color: white;
cursor: pointer;
transition: all 0.3s ease-out;
}
.start_btn:hover{
  border: 1px solid #03A9F4;
  color: #03A9F4;
  background: white;
}
.All{
  /*display: flex;*/
  /*flex-direction: column;*/
  margin: 50px auto;
  /*justify-content: center;*/
  height: 100%;
}
._title{
  text-align: center;
font-family: monospace;
font-size: 20px;
color: #ffffff;
background: #03A9F4;
padding: 15px 0;
}
._title h2{
  margin: 0;
}
._box{
  text-align: center;
  padding: 10px 0;
}
._right{

  width: 50%;
  margin: auto;
}
._left{
  text-align: center;

}
._clear::after{
  content: '';
  display: block;
  clear: both;
}
#canvas{
  /*width: 100%;*/
}
._words,._wrong_words{
  margin-top: 50px;
  display: flex;
  align-items: flex-end;
}
._textvalue{
  display: block;
  font-size: 17px;
  font-family: monospace;
  border-bottom: 2px solid #07bdac;
  background: rgba(7, 189, 172, 0.08);
  padding: 0px 5px;
  text-align: center;
  width: 30px;
  color: #07bdac;

}
._wrong_words ._textvalue{
  background: rgba(255, 45, 83, 0.08);
  padding: 5px 5px !important;
  border-bottom: 2px solid #ff2d53;
  color: #ff2d53 !important;
}
._textvalue-padding{
  padding: 5px 5px !important;
}
._line{

  display: inline-block;
  margin-right: 10px;
}
._timer{
  display: flex;
  font-family: fantasy;
  justify-content: center;
  font-size: 20px;
  color: rgb(221, 221, 221);
  margin: 0 0 10px 0;
}
._timer > div{
  width: 35px;
  padding: 0px 5px;
  text-align: center;
}
._btn{
  width: 40px;
  margin: 5px 5px;
  padding: 5px;
  font-family: monospace;
  outline: none;
  font-size: 18px;
  border: none;
  background: #f9f9f9;
  color: #b1b1b1;
  border-radius: 1px;
  cursor: pointer;
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
  transition: all .2s ease;
}
._btn:hover{
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
}

._disable{
  background: #dddddd;
box-shadow: none;
border-radius: 2px;
pointer-events: none;
}
._words_title{
  margin-right: 10px;
font-family: monospace;
font-size: 15px;
border-left: 2px solid #07bdac;
padding: 0px 10px;
background: #ebfaf9;
color: #07bdac;
}
._wrong_words ._words_title{
  border-left: 2px solid #ff2d53 !important;
  color: #ff2d53 !important;
  background: rgba(255, 45, 83, 0.08) !important;
}
.words-padding{
  padding: 7px 15px !important;
}
