* {
  color: white;
  text-shadow: 0 0 5px rgb(255, 255, 255);
}
body {
  margin: 0;
  background-image: url("./background.jpg");
  background-size: cover;
  background-position: center center;
  height: 100vh;
  font-family: Comic Sans MS, Comic Sans, cursive;
}
h1 {
  text-align: center;
}
button {
  background-color: transparent;
  border-style: solid;
  border-width: 2px;
  border-color: white;
  height: 30px;
  width: 30px;
  box-shadow: inset 0 0 5px white, 0 0 5px white;
}
button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
button:active {
  background-color: rgba(255, 255, 255, 0.5);
}
.gameSection {
  display: flex;
  justify-content: space-evenly;
}
.buttonsSection {
  margin: 30px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-auto-rows: minmax(10px, 50px);
  grid-gap: 15px;
}
.hangmanLives {
  height: 500px;
  width: 200px;
  border-style: dashed;
  border-color: white;
  padding: 20px;
}
.lives {
  font-size: 50px;
  text-align: center;
}
.nLives {
  margin: 20px;
  font-size: 50px;
  text-align: center;
}
.word {
  margin-top: 100px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*   text-decoration: underline; */
}
.controlButtons {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 200px;
}
.controlButtons button {
  width: 120px;
  height: 60px;
  font-size: 20px;
}
/* drawing */
.drawing {
  height: 300px;
  position: relative;
}
.drawing div {
  position: absolute;
  background-color: white;
  box-shadow: inset 0 0 5px white, 0 0 5px white;
  border-radius: 2.5px;
  transition: width 1s, height 1s;
}
.land {
  width: 200px;
  height: 5px;
  bottom: 0;
  right: 0;
}
.column {
  width: 5px;
  opacity: 0;
  height: 5px;
  bottom: 0;
  left: 20px;
}
.beam {
  width: 5px;
  opacity: 0;
  height: 5px;
  top: 18px;
  left: 20px;
}
.rope {
  opacity: 0;
  width: 5px;
  height: 5px;
  top: 18px;
  left: 115px;
}
.drawing .head {
  width: 50px;
  height: 5px;
  opacity: 0;
  top: 65px;
  left: 88px;
  border-radius: 50px;
  background-color: transparent;
  border-style: solid;
  border-width: 5px;
  position: relative;
  transform-origin: top;
}
.drawing .head .eye1 {
  opacity: 0;
  position: absolute;
  background-color: transparent;
  box-shadow: none;
  font-size: 24px;
  left: 8px;
}
.drawing .head .eye2 {
  opacity: 0;
  position: absolute;
  background-color: transparent;
  box-shadow: none;
  font-size: 24px;
  right: 8px;
}
.core {
  opacity: 0;
  width: 5px;
  height: 5px;
  top: 120px;
  left: 115px;
}
.rArm {
  position: absolute;
  opacity: 0;
  width: 5px;
  height: 5px;
  top: 140px;
  left: 115px;
  transform: rotate(30deg);
  transform-origin: left;
}

.lArm {
  position: absolute;
  opacity: 0;
  width: 5px;
  height: 5px;
  top: 140px;
  left: 120px;
  transform: rotate(-210deg);
  transform-origin: left;
}

.rLeg {
  position: absolute;
  opacity: 0;
  width: 5px;
  height: 5px;
  top: 195px;
  left: 118px;
  transform: rotate(60deg);
  transform-origin: left;
}
.lLeg {
  position: absolute;
  opacity: 0;
  width: 5px;
  height: 5px;
  top: 195px;
  left: 118px;
  transform: rotate(-240deg);
  transform-origin: left;
}
@keyframes grow {
  to {
    width: 60px;
  }
}
@keyframes growHead {
  to {
    width: 50px;
    height: 50px;
  }
}
.winnerMessage {
  position: absolute;
  font-size: 150px;
}
