@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);
  }
}
.box {
  background-color: white;
  box-shadow: 0 0 25px black;
  padding: 10px 15px;
  border-radius: 7px;
}

.button {
  background-color: transparent;
  padding: 3px 6px;
  color: #000;
  border: 1px solid black;
  border-radius: 5px;
  transition: 0.2s;
}
.button:hover {
  transition: 0.2s;
  transform: scale(1.02);
  color: white;
  background-color: black;
}

.input {
  border: 1px solid black;
  border-radius: 5px;
  padding-left: 6px;
  outline: none;
  transition: 0.2s;
}
.input:hover {
  transition: 0.2s;
  transform: scale(1.02);
}

.img {
  height: 2rem;
  object-fit: cover;
}

.low {
  background-color: rgb(0, 47, 255);
  transition: 0.3s;
}

.low-text {
  color: rgb(0, 47, 255);
  transition: 0.3s;
}

.normal {
  background-color: rgb(0, 126, 0);
  transition: 0.3s;
}

.normal-text {
  color: rgb(0, 126, 0);
  transition: 0.3s;
}

.over {
  background-color: rgb(255, 251, 0);
  transition: 0.3s;
}

.over-text {
  color: rgb(255, 251, 0);
  text-shadow: 0 0 10px #000;
  transition: 0.3s;
}

.obese {
  background-color: rgb(255, 102, 0);
  transition: 0.3s;
}

.obese-text {
  color: rgb(255, 102, 0);
  transition: 0.3s;
}

.eobese {
  background-color: rgb(184, 0, 0);
  transition: 0.3s;
}

.eobese-text {
  color: rgb(184, 0, 0);
  transition: 0.3s;
}

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