@font-face {
  font-family: adobemingstd;
  src: url("../font/adobemingstd-light.otf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: adobemingstd;
}

.body {
  transition: 0.4s;
}

.bi-sun {
  color: rgb(250, 225, 0);
  text-shadow: 0 0 14px rgb(0, 217, 255);
  cursor: pointer;
  transition: 0.3s;
  animation: rotate 5s linear infinite forwards;
}
.bi-sun:hover {
  color: rgb(216, 195, 5);
  transition: 0.3s;
  text-shadow: 0 0 27px rgb(0, 217, 255);
}

.bi-moon {
  color: #fafafa;
  text-shadow: 0 0 14px rgb(0, 38, 255);
  cursor: pointer;
  transition: 0.3s;
  animation: rotate 5s linear infinite forwards;
}
.bi-moon:hover {
  transition: 0.3s;
  color: #dbdbdb;
  text-shadow: 0 0 27px rgb(0, 38, 255);
}

.bg {
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.7960784314);
}

.bg-2 {
  transition: 0.3s;
  background-color: rgba(180, 180, 180, 0.7960784314);
}

.bg-3 {
  transition: 0.3s;
  background-color: rgba(15, 15, 15, 0.9254901961);
}

.vh {
  height: 90vh;
}

.text {
  color: #000000;
  transition: 0.3s;
}
.text:hover {
  color: #7e7e7e;
}

.text-2 {
  color: #ffffff;
  transition: 0.3s;
}
.text-2:hover {
  color: #adadad;
}

.offcanvas-btn {
  border: none;
  background-color: transparent;
  color: #000000;
  transition: 0.3s;
}
.offcanvas-btn:hover {
  color: #7e7e7e;
}

.offcanvas-btn2 {
  color: #ffffff;
}
.offcanvas-btn2:hover {
  color: #adadad;
}

.bi-x-lg {
  border: none;
  background-color: transparent;
  color: rgb(255, 0, 0);
  transition: 0.1s;
}
.bi-x-lg:hover {
  transition: 0.1s;
  transform: scale(1.1);
}

.links {
  color: rgb(17, 0, 255);
  transition: 0.4s;
  text-shadow: 0 0 2px black;
}
.links:hover {
  color: rgb(0, 153, 255);
}

.links2 {
  color: rgb(255, 255, 255);
}
.links2:hover {
  color: rgb(112, 112, 112);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.green {
  background: rgba(0, 194, 0, 0.315);
}

.bg-list {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(228, 228, 228) 20%, rgb(60, 60, 60) 100%);
  border-radius: 30px;
  box-shadow: 0 0 20px black;
  transition: 0.5s;
}

.bg-list2 {
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgb(0, 0, 0) 20%, rgb(255, 255, 255) 100%);
  box-shadow: 0 0 20px white;
}

.easy {
  background: transparent;
  border: 1px solid rgb(14, 107, 0);
  color: rgb(14, 107, 0);
  box-shadow: 0 0 10px rgb(14, 107, 0);
  border-radius: 20px;
  transition: 0.5s;
}
.easy:hover {
  scale: 1.01;
  background: rgb(14, 107, 0);
  color: white;
}

.normal {
  background: transparent;
  border: 1px solid rgb(216, 216, 0);
  color: rgb(216, 216, 0);
  box-shadow: 0 0 10px rgb(216, 216, 0);
  border-radius: 20px;
  transition: 0.5s;
}
.normal:hover {
  scale: 1.01;
  background: rgb(216, 216, 0);
  color: white;
}

.hard {
  background: transparent;
  border: 1px solid rgb(163, 0, 0);
  color: rgb(163, 0, 0);
  box-shadow: 0 0 10px rgb(163, 0, 0);
  border-radius: 20px;
  transition: 0.5s;
}
.hard:hover {
  scale: 1.01;
  background: rgb(163, 0, 0);
  color: white;
}

.input {
  outline: none;
  caret-color: black;
  border: 2px solid black;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  background: transparent;
  color: black;
  padding: 5px;
  transition: 0.5s;
}
.input:focus, .input:focus-visible {
  caret-color: rgb(89, 89, 89);
  border: 2px solid rgb(89, 89, 89);
}

.input2 {
  color: white;
  caret-color: rgb(255, 255, 255);
  border: 2px solid rgb(255, 255, 255);
}

.guess {
  background: transparent;
  border: 2px solid black;
  color: black;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
}
.guess:hover {
  scale: 1.01;
  background: #000;
  color: white;
}

.guess2 {
  border: 2px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}
.guess2:hover {
  scale: 1.01;
  background: #ffffff;
  color: rgb(0, 0, 0);
}

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