* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, asider {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: -1;
  font-size: 14px;
  -ms-text-size-adjust: -100%;
  -moz-text-size-adjust: -100%;
  -webkit-text-size-adjust: -100%;
}

input, button, textarea {
  font-family: inherit;
}

input ::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
  color: inherit;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  padding: 40px;
  position: relative;
  background-color: rgb(219, 219, 174);
}

.gallows-container {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.gallows-image {
  width: 58%;
  height: 80%;
  position: absolute;
  left: 0;
  top: 0;
}

.container__part-body-elements {
  width: 40%;
  height: 60%;
  display: flex;
  flex-direction: column;
}

.head-container {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: center;
}
.head-container .head-element {
  display: flex;
  visibility: hidden;
  width: 30%;
  border-radius: 100%;
  border: 5px solid #000;
}

.body-container {
  width: 100%;
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.body-element {
  display: flex;
  visibility: hidden;
  justify-content: center;
  height: 90%;
  width: 33%;
  font-weight: 600;
  font-size: 100px;
}

.left-hand {
  width: 33%;
  display: flex;
  visibility: hidden;
  justify-content: center;
  font-weight: 800;
  font-size: 100px;
}

.right-hand {
  width: 33%;
  display: flex;
  visibility: hidden;
  justify-content: center;
  font-weight: 800;
  font-size: 100px;
}

.legs-container {
  height: 50%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.left-leg {
  display: flex;
  visibility: hidden;
  font-size: 260px;
}

.right-leg {
  display: flex;
  visibility: hidden;
  font-size: 260px;
}

.quiz-container {
  width: 50%;
}

.quastion-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
}

.question-text {
  font-size: 28px;
}

.number-hint {
  font-size: 28px;
  font-weight: 600;
}

.hint-container {
  width: 80%;
  height: 25%;
  display: flex;
  gap: 10px;
  font-size: 40px;
  margin-bottom: 25px;
}

.hint-letter {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-bottom: 5px solid #000;
  color: #dbdbae;
}

.guessed-letter {
  color: rgb(0, 0, 0);
}

.keyboard-container {
  height: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.keyboard-container-letter {
  width: 95%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgb(70, 70, 56);
  align-content: center;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 20px;
  gap: 5px;
  font-size: 30px;
  cursor: pointer;
}

.keyboard-letter {
  width: 9%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #eae0eb;
  border: 1px solid #000;
  border-radius: 20px;
  translate: easy 0.3;
  transition: all 0.7s;
}
.keyboard-letter:hover {
  background-color: hsla(295, 6%, 42%, 0.5);
}

.disabled {
  background-color: #999292;
  cursor: not-allowed;
}

.modal-container {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: hsla(0, 0%, 0%, 0.8);
}

.modal-window {
  width: 60%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50px;
  background-color: rgb(219, 219, 174);
  padding: 30px;
}

.modal-window__message {
  font-size: 40px;
}

.modal-window__meesage-score {
  font-size: 25px;
  font-weight: 800;
}

.btn-play {
  width: 250px;
  height: 20%;
  padding: 5px;
  border-radius: 30px;
  background-color: #fff;
  color: #000;
  border: 1px solid #999292;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.7s;
  margin-top: 30px;
}
.btn-play:hover {
  background-color: #e6dede;
}

@media screen and (max-width: 1100px) {
  .modal-window {
    width: 80%;
    height: 60%;
  }
  .keyboard-container-letter {
    width: 100%;
    font-size: 20px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 20px;
  }
  .hint-container {
    width: 100%;
  }
  .keyboard-letter {
    height: 35px;
  }
}
@media screen and (max-width: 550px) {
  .container {
    flex-direction: column;
    height: 100%;
  }
  .gallows-container {
    width: 100%;
    height: 50%;
  }
  .quiz-container {
    width: 100%;
    height: 70%;
  }
  .body-element, .left-hand, .right-hand {
    font-size: 50px;
  }
  .legs-container {
    height: 40%;
  }
  .left-leg, .right-leg {
    font-size: 70px;
  }
  .question-text {
    font-size: 18px;
  }
  .number-hint {
    font-size: 18px;
  }
  .keyboard-container {
    padding-bottom: 50px;
  }
  .keyboard-container-letter {
    width: 95%;
  }
  .btn-play {
    height: 20%;
    font-size: 25px;
  }
}

/*# sourceMappingURL=style.css.map */
