@import url("https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-family: "Architects Daughter", cursive;
  box-sizing: border-box;
}

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

::-moz-selection {
  background-color: #000000;
  color: #ffffff;
}

::selection {
  background-color: #000000;
  color: #ffffff;
}

.heading {
  font-family: "Montserrat", sans-serif;
}

.paragraph {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
body .loader {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8faf8;
  z-index: 9;
  flex-direction: column;
  top: 0;
}
body .loader img {
  width: 100px;
}
body .loader span {
  font-size: 30px;
}
body .loader.disactive {
  display: none;
}
body .settings {
  width: 40px;
  height: 40px;
  border-radius: 50% 48% 46% 55%;
  border: 2px solid black;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  background-color: transparent;
  top: 10px;
  right: 20px;
}
body .settings_menu {
  position: absolute;
  width: 300px;
  height: 70%;
  z-index: 3;
  background: #ffffff;
  border: 3px solid #000000;
  border-radius: 50px 48px 63px 53px;
  scale: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
body .settings_menu.active {
  scale: 1;
  transition: 0.3s;
}
body .settings_menu .toggles {
  width: 200px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .settings_menu .toggles .toggle {
  width: 70px;
  height: 20px;
  cursor: pointer;
  padding: 10px;
  border: 2px solid #000000;
  border-radius: 35px 36px 45px 46px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
body .settings_menu .toggles .toggle .circle {
  width: 30px;
  height: 30px;
  border-radius: 48% 46% 50% 45%;
  border: 2px solid #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .settings_menu .toggles .toggle.off {
  justify-content: end;
}
body .settings_menu .toggles .toggle.off .circle::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  border-radius: 3px;
  background: #000000;
  transform: rotate(-45deg);
  transition: 0.3s;
}
body .settings_menu button, body .settings_menu a {
  text-decoration: none;
  color: #000000;
  width: 200px;
  height: 47px;
  font-size: 18.035px;
  font-weight: bold;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: transparent;
  border: 2px solid #000000;
  cursor: pointer;
  transition: 0.0003s;
  border-radius: 67px 48px 70px 61px;
}
body .settings_menu button:hover, body .settings_menu a:hover {
  scale: 0.9;
}
body .settings_menu button:nth-child(2), body .settings_menu a:nth-child(2) {
  font-size: 15px;
}
body .container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
body .container .opening {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}
body .container .opening h1 {
  font-size: 80px;
  z-index: 2;
  animation: intro 0.5s 1;
}
@keyframes intro {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
body .container .opening img {
  scale: 1.8;
  animation: fade 1s 1;
}
body .container .opening button {
  width: 150px;
  height: 50px;
  font-size: 30px;
  z-index: 2;
  background: transparent;
  border: 3px solid black;
  border-radius: 50px 48px 46px 55px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  animation: intro 1s 1;
}
body .container .opening button:hover {
  scale: 0.8;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
body .container .game {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: #ffffff;
  border-radius: 50px 48px 0 0;
  bottom: -100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  transition: 0.8s;
}
body .container .game .modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6509803922);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  scale: 0;
  text-align: center;
}
body .container .game .modal.active {
  scale: 1;
}
body .container .game .modal .content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  background: #ffffff;
  width: 70%;
  height: 300px;
  border-radius: 30px;
  transition: 300ms;
}
body .container .game .modal .content .mbtn {
  background: transparent;
  border: 2px solid #000000;
  width: 150px;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px 48px 46px 55px;
}
body .container .game .modal .content .mbtn:hover {
  scale: 0.9;
}
body .container .game .modal .content .mbtn.leave {
  height: 30px;
  border-radius: 50px 48px 46px 55px;
}
body .container .game .modal .content .mbtn.leave:hover {
  scale: 0.95;
}
body .container .game .modal .content h1 {
  font-size: 29.124px;
}
body .container .game .modal .content h4 {
  font-size: 18px;
}
body .container .game .add {
  position: absolute;
  background-color: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50% 48% 46% 55%;
  border: 2px solid black;
  font-size: 20px;
  cursor: pointer;
  z-index: 4;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
body .container .game .add.leave {
  top: 15px;
  left: 15px;
}
body .container .game .add.hint {
  top: 15px;
  right: 15px;
}
body .container .game .hint-box {
  width: 70%;
  height: -moz-max-content;
  height: max-content;
  border: 2px solid black;
  padding: 4px;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 13px;
  border-bottom-right-radius: 30px;
  background: #ffffff;
  position: absolute;
  z-index: 7;
  top: 60px;
  scale: 0;
  transition: 300ms;
  right: 40px;
}
body .container .game .hint-box h1 {
  font-size: 32.36;
}
body .container .game .hint-box p {
  font-size: 20px;
}
body .container .game .hint-box.active {
  scale: 1;
}
body .container .game .word {
  font-size: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 3;
  gap: 10px;
  cursor: default;
  text-transform: uppercase;
  font-weight: bold;
}
body .container .game .word .letter {
  height: 40px;
  width: 35px;
  border-bottom: 2px solid #000000;
}
body .container .game .word .letter.g {
  border-color: transparent !important;
}
body .container .game.start {
  bottom: 0;
  transition: 0.8s;
}
body .container .game .err {
  z-index: 3;
}
body .container .game .man {
  scale: 1.5;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
body .container .game .keyboard {
  width: auto;
  z-index: 3;
  gap: 3px;
  display: flex;
  gap: 3;
  justify-content: center;
  flex-wrap: wrap;
}
body .container .game .keyboard button {
  width: calc(11.1111111111% - 5px);
  height: 32px;
  background: transparent;
  border: 2px solid black;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  font-size: 20px;
  border-radius: 4px 5px 4.7px 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
body .container .game .keyboard button:hover {
  scale: 0.9;
}
body .container .game .keyboard button.dis {
  border: rgb(185, 185, 185) 2px solid;
  color: rgb(185, 185, 185);
  pointer-events: none;
}
body .container .game .keyboard button.dis:hover {
  scale: 1;
}
body .container .game .keyboard button.dis.correct {
  border: rgba(29, 249, 4, 0.5) 2px solid;
  color: rgba(29, 250, 4, 0.5);
}
body .container .game .keyboard button.dis.wrong {
  border: rgba(250, 4, 4, 0.5) 2px solid;
  color: rgba(250, 4, 4, 0.5);
}/*# sourceMappingURL=style.css.map */