@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Fira Code", monospace;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.background {
  background: url(../../public/bgholographic.png) no-repeat center center;
  filter: grayscale(60%) hue-rotate(80deg);
  background-size: cover;
  height: 100dvh;
  width: 100vw;
  position: fixed;
  z-index: -1000;
}

.main {
  height: 100dvh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-wrapper {
  background: rgba(66, 13, 52, 0.9529411765);
  filter: grayscale(50%);
  padding: 2rem;
  margin: 0.5rem;
  border-radius: 2rem;
  max-width: 450px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: scaleBg 1s;
}
.container-wrapper__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 15px 0;
  font-family: "Fira Code", monospace;
  font-size: 1.2rem;
  background: rgba(202, 78, 169, 0.9529411765);
  border-radius: 3em;
  letter-spacing: 5px;
  border: 0;
  border: 3px solid rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  font-weight: bolder;
  text-shadow: 0 0 3px #000;
  outline: none;
  padding: 1.1rem;
  position: relative;
  transform-style: preserve-3d;
  transition: all 150ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.container-wrapper__button::before {
  background: rgba(157, 47, 127, 0.9529411765);
  border-radius: inherit;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translate3d(0, 0.75em, -1em);
  transition: all 150ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 100%;
}
.container-wrapper__button:hover {
  transform: translate3d(0, 0.5em, -1em);
}
.container-wrapper__button:hover::before {
  transform: translate3d(0, 0.5em, -1em);
}
.container-wrapper__button:active {
  background: rgba(202, 78, 169, 0.9529411765);
  transform: translate(0, 0.75em);
}
.container-wrapper__button:active::before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.45), 0 0 rgba(202, 78, 169, 0.9529411765);
  transform: translate3d(0, 0, -1em);
}

.find {
  animation: fadeIn 0.5s ease-out, scaleBg 0.5s;
}
.find__title {
  font-family: "Rowdies", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
  color: #fcfcfc;
  text-transform: uppercase;
  text-shadow: 0 0 3px #000;
  position: relative;
  z-index: 1;
  text-align: center;
}
.find__title::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 5px;
  bottom: 0;
  background-color: #fff;
  border-radius: 0 5px 0 5px;
  animation: logoAnimation 3s alternate infinite ease-in-out;
}
@keyframes logoAnimation {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(135px);
  }
}
.find__label {
  color: #fff;
  text-align: left;
}
.find__input {
  width: 100%;
  padding: 10px;
  margin: 2px 0;
  border-radius: 8px;
  border: 2px solid #dbdbdb;
  font-size: 1rem;
  font-family: "Fira Code", monospace;
}
.find__input:focus {
  outline: none;
}

.section-output {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  color: #fff;
  text-shadow: 1px 1px 3px #000;
}
.section-output__button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #eee;
  font-size: 1rem;
  font-family: sans-serif;
  font-weight: bolder;
  cursor: pointer;
  background: transparent;
  border: none;
  margin: 15px 0 5px;
  gap: 5px;
}
.section-output__button__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.8rem;
  position: absolute;
  top: -50px;
  font-weight: bolder;
  height: 50px;
  width: 100px;
  background: #000;
  display: none;
}
.section-output__button p:hover {
  text-decoration: underline;
  transition: 0.3s ease-in;
}
.section-output__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  text-align: center;
  font-weight: bolder;
  transform: translateX(-10px);
  gap: 10px;
}
.section-output__title::before {
  content: "  ";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-block;
  opacity: 1;
  animation: blink 1s infinite;
}
.section-output .output {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 10px;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
}
.section-output .output i {
  animation: blink 1.2s infinite;
}
.section-output .output__label {
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.section-output .output__value {
  font-size: 1.4rem;
}
.section-output .output:hover {
  background-color: rgba(224, 0, 0, 0.1);
}

@media (width <= 500px) {
  .container-wrapper {
    max-width: 450px;
    padding: 1rem;
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  75% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.error {
  display: flex;
  justify-content: center;
  align-items: center;
  color: red;
  font-weight: bolder;
  filter: drop-shadow(1px 1px 5px red);
  width: 100%;
  padding-top: 5px;
}

.shake {
  animation: shake 0.5s ease-in-out;
}

.disabled {
  display: none;
}

@keyframes fadeIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.activated {
  animation: fadeIn 0.5s ease-out, scaleBg 1s;
}

.scale-animation {
  animation: scaleBg 1s;
}

@keyframes scaleBg {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.loading-icon {
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
}

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