/* test */

.test {
  width: 600px;
}

.status {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status i {
  margin: 2px 8px;
  padding: 4px 28px;
  height: 24px;
  font: bold 16px Teko;
  background-position: 0px -1px;
}

.text {
  font: 400 24px consolas;
  word-break: break-all;
}

.btn-play {
  position: absolute;
  padding: 10px 25px;
  color: #fff;
  text-decoration: none;
  text-transform: capitalize;
  background-color: #131313;
}


/* keyboard */

.keyboard {
  margin: 25px auto 10px;
  width: 600px;
  height: 200px;
}

.row {
  width: 100%;
  height: 40px;
}

.active-key {
  color: #000 !important;
  background-color: #9b9b9b !important;
}


/* colors */

.correct {
  color: #4a4a4a;
}

.wrong {
  color: #e51616;
}


/* cursors */

.block {
  color: #fff;
  background-color: #131313;
}

.box {
  border: 1px solid #000;
}

.line {
  border-left: 2px solid #000;
}

.underline {
  border-bottom: 2px solid #000;
}


/* space */

.default-space {
  padding: 0;
}

.space {
  padding: 0 5px;
}


/* keys */

.key {
  margin: 0 1px;
  padding: 2px 4px;
  width: 34px;
  height: 36px;
  display: inline-block;
  color: #fff;
  font-size: 10px;
  user-select: none;
  text-transform: capitalize;
  background-color: #131313;
}

.key-tab,
.key-backslash {
  width: 57px;
}

.key-backspace {
  width: 80px;
}

.key-capslock {
  width: 75px;
}

.key-enter {
  width: 78px;
}

.key-shift {
  width: 97px;
}

.key-ctrl,
.key-alt {
  width: 60px;
}

.key-space {
  color: #131313;
  width: 333px;
}


/* overlay - result */

.overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
}

.result {
  height: 500px;
  color: #ffffff;
  text-align: center;
}

.result h1 {
  text-align: left;
}

.message {
  margin: 8px 0;
  font-size: 28px;
  text-transform: uppercase;
}

.btn-play-again {
  margin: 10px 0;
  padding: 10px 0;
  width: 150px;
  color: #fff;
  background-color: #939393;
}


/* game */

.game {
  width: 700px;
}

.canvas {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('../assets/icons/games/Racing.png');
}


/* comming-soon */

.comming-soon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px 10px;
  font-size: 54px;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #131313;
}