@import url("https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap");
* {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
  background: rgb(31, 40, 44);
}

.container {
  padding: 0 20px;
  max-width: 100vw;
  margin: 0 auto;
  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;
}
.container > * {
  margin-top: 20px;
}

.btn {
  background-color: #f13986;
  padding: 5px 20px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.btn:hover {
  -webkit-box-shadow: 0 0 0.5em rgb(19, 204, 210);
          box-shadow: 0 0 0.5em rgb(19, 204, 210);
  scale: 1.1;
}
.btn.inactive {
  color: rgb(31, 40, 44);
  -webkit-filter: grayscale(50%) brightness(50%);
          filter: grayscale(50%) brightness(50%);
  cursor: default;
}
.btn.inactive:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  scale: 1;
}
.btn.inactiveTemp {
  color: rgb(31, 40, 44);
  -webkit-filter: grayscale(50%) brightness(50%);
          filter: grayscale(50%) brightness(50%);
  cursor: default;
}
.btn.inactiveTemp:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  scale: 1;
}

.highlight {
  background-color: rgb(19, 204, 210);
  -webkit-box-shadow: 0 0 0.5em rgb(19, 204, 210);
          box-shadow: 0 0 0.5em rgb(19, 204, 210);
  scale: 1.1;
}

.levels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.levels__item_active {
  background-color: rgb(19, 204, 210);
}
.levels__item_active.inactive {
  -webkit-filter: grayscale(0%) brightness(100%);
          filter: grayscale(0%) brightness(100%);
}

.round {
  color: rgb(19, 204, 210);
  text-align: center;
  font-size: 2em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.gameBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90vw;
  gap: 1em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 2em;
}

.startBtn {
  font-size: 2em;
}

.msg {
  color: rgb(19, 204, 210);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 3em;
  height: 2em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.keyboard {
  height: 15em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.keyboard__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.key {
  height: 40px;
  width: 40px;
  font-size: 2em;
}

@media (max-width: 550px) {
  .btn {
    padding: 5px 10px;
  }
  .btn:hover {
    scale: 1;
  }
  .gameBtns {
    gap: 0.5em;
    font-size: 1.5em;
  }
  .startBtn {
    font-size: 1.5em;
  }
  .msg {
    font-size: 2em;
  }
  .keyboard {
    gap: 1em;
  }
  .keyboard__row {
    gap: 0.5em;
  }
  .key {
    height: 30px;
    width: 30px;
    font-size: 1.5em;
  }
}
@media (max-width: 400px) {
  .gameBtns {
    gap: 0.5em;
    font-size: 1.5em;
  }
  .gameBtns {
    font-size: 1.2em;
  }
  .startBtn {
    font-size: 1.2em;
  }
  .msg {
    font-size: 1.5em;
  }
  .key {
    height: 26px;
    width: 26px;
    font-size: 1.2em;
  }
}/*# sourceMappingURL=style.css.map */