* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-image: url("../images/cute.jpg");
  background-color: pink;
  background-size: cover;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  min-height: 98vh;
  font-family: arial;
}

.score__container {
  position: absolute;
  width: 20vw;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  margin: 20px;
  border: 2px solid black;
}

.game__container {
  width: 40vw;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  margin: 70px auto;
  border: 5px solid black;
  border-radius: 5px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .game__container {
    width: 98vw;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    min-height: 98vh;
    margin: auto;
  }
}

.game__title {
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .game__title {
    font-size: 25px;
  }
}

.button, .start__button, .restart__button {
  width: 30vw;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 20px;
  background-color: #25caaa;
  border: 2px solid #f76fca;
  border-radius: 5px;
  cursor: pointer;
}

.button:focus, .start__button:focus, .restart__button:focus {
  outline: none;
}

.button:hover, .start__button:hover, .restart__button:hover {
  background-color: #f85db4;
}

@media (max-width: 991px) {
  .button, .start__button, .restart__button {
    width: 80vw;
    font-size: 16px;
    padding: 3vh;
  }
}

.restart__button {
  display: none;
}

.display__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30vw;
  height: 200px;
  margin-top: 15px;
  position: relative;
}

@media (max-width: 991px) {
  .display__container {
    width: 80vw;
    height: 20vh;
    min-height: 80px;
    max-height: 200px;
  }
}

.letter__container {
  width: 15vw;
  height: 200px;
  font-size: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  background-color: yellow;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .letter__container {
    width: 30vw;
    height: 20vh;
    min-height: 80px;
    max-height: 200px;
    font-size: 80px;
  }
}

.licznik {
  width: 7vw;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #fff;
  border-radius: 5px;
  position: relative;
  font-size: 18px;
  z-index: 10;
}

@media (max-width: 991px) {
  .licznik {
    width: 20vw;
  }
}

.grow-green {
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: yellowgreen;
  bottom: 0;
  z-index: -1;
}

.grow-red {
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: red;
  bottom: 0;
  z-index: -1;
}

.timer {
  background-color: #f76fca;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  margin-top: 15px;
  width: 30vw;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .timer {
    width: 80vw;
  }
}

.game__end, .game__end--loss, .game__end--win {
  position: absolute;
  font-size: 20px;
  height: 50%;
  width: 50%;
  top: 25%;
  left: auto;
  right: auto;
  padding: 50px;
  color: white;
  text-align: center;
  outline: 2px dashed #fff;
  outline-offset: -10px;
  border-radius: 5px;
  -webkit-box-shadow: 10px 10px 15px #000;
          box-shadow: 10px 10px 15px #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 991px) {
  .game__end, .game__end--loss, .game__end--win {
    width: 90vw;
    font-size: 15px;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
}

.game__end--hidden {
  display: none;
}

.game__endButton {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 35px;
  font-weight: bold;
}

.game__end--loss {
  background-color: #cf3b3b;
  z-index: 20;
}

.game__end--win {
  background-color: #9acd32;
  z-index: 20;
}

.hidden {
  position: fixed;
  left: 120%;
}

.footer {
  height: 2vh;
  font-size: 10px;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */