.canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  /* background: red; */
}

#game-canvas {
  background: rgb(209, 207, 207);
  z-index: 1;
}

/* #start-screen {
  background: lightblue;
  position: relative;
} */

.textbox {
  position: relative;
  height: 88px;
  width: 100%;
  text-align: center;
  bottom: 140px;
}

.score-lives {
  display: flex;
  justify-content: space-evenly;
}

#word-input {
  font-family: "Roboto Slab";
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
  position: absolute;
  border: 0px solid;
  outline: none;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 40px;
  padding: 0;
  font-size: 24px;
  text-align: center;
}

#score-text, #lives-text {
  background-color: lightblue;
  /* margin: 0%;
  padding: 0%; */
  /* bottom: 10rem; */
}

footer {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 3%;
  left: 1%
}

footer * {
  display: flex;
  align-items: center;
  margin-right: 5px;
}

footer p {
  font-family: Arial, Helvetica, sans-serif;
}

footer img {
  height: 30px;
}