@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html {
  background-color: black;
  color: white;
  font-family: "Roboto", sans-serif;
}

header {
  cursor: pointer;
}
header img {
  filter: invert(1);
  width: clamp(50px, 50%, 120px);
}

.apps {
  position: absolute;
  top: 100px;
  opacity: 0.7;
  z-index: -2;
  opacity: 0.3;
}

.space {
  position: absolute;
  top: 100px;
  opacity: 0.7;
  z-index: -2;
  width: 100%;
}

.mob1 {
  position: absolute;
  left: -221px;
  top: 229px;
  width: clamp(200px, 50%, 500px);
  transform: rotate(39deg);
  opacity: 0.4;
}

.mob2 {
  position: absolute;
  right: -521px;
  top: 109px;
  width: clamp(200px, 50%, 900px);
  transform: rotate(-39deg);
  opacity: 0.4;
}

main h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
  height: 90px;
  color: #ffffff;
}
main .crd {
  width: clamp(300px, 90%, 800px);
  min-height: 600px;
  background: rgba(129, 129, 129, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(135, 135, 135, 0.15);
  border-radius: 18px;
  padding: 30px;
}
main .crd .choice {
  border: 0.1rem solid #d4a0ff;
  overflow: hidden;
  cursor: pointer;
  min-width: 300px;
  color: #d4a0ff;
  border-radius: 10px;
  height: 50px;
}
main .crd .choice hr {
  background-color: #d4a0ff;
  width: 0.1rem;
  border: none;
  height: 50px;
}
main .crd .choice div {
  transition: all 0.25s ease;
  width: 100%;
  height: 100%;
}
main .crd .choice .active {
  background-color: #d4a0ff;
  color: white;
}
main .crd button {
  background-color: white;
  color: black;
  font-weight: 600;
  font-size: 20px;
  padding: 10px;
  border-radius: 50px;
  width: clamp(200px, 50%, 200px);
  margin-top: 30px;
}
main .crd .inputContainer {
  display: grid;
  grid-template-columns: repeat(3, 160px);
  gap: 25px;
  justify-items: center;
}
main .crd .inputContainer input {
  width: 100%;
  max-width: 180px;
  height: 48px;
  border-radius: 5px;
  background-color: #ffffff;
  color: black;
  padding: 10px;
  border: none;
}
main .crd .inputContainer input::-moz-placeholder {
  text-align: center;
}
main .crd .inputContainer input::placeholder {
  text-align: center;
}
main .crd .inputContainer input:focus, main .crd .inputContainer input:active, main .crd .inputContainer input:hover {
  background-color: white;
  outline: 0.09rem solid #d4a0ff;
  outline-offset: 3px;
  color: #000;
}
main .crd .clearbuttoncontainer {
  width: clamp(300px, 85%, 500px);
}
main .crd .clearbutton {
  color: white;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1.2px;
  cursor: pointer;
}
main .crd .clearbutton:hover {
  color: #d4a0ff;
}

#pageloader {
  position: fixed;
  inset: 0;
  background: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}

#pageloader.hide {
  opacity: 0;
  pointer-events: none;
}

.ringo {
  width: 180px;
  height: 180px;
  border: 12px solid rgba(255, 255, 255, 0.1);
  border-top-color: #d4a0ff;
  border-radius: 50%;
  animation: spin 1.3s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ringo img {
  width: 70px;
  filter: invert(1);
  pointer-events: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
footer {
  border-top: 0.08rem solid #949494;
  margin-top: 500px;
  background-color: black;
  padding: 30px 90px;
  margin-top: 120px;
}
footer .footContainer {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 20px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
footer .footContainer img:nth-of-type(1) {
  filter: invert(1) !important;
  width: clamp(50px, 40%, 170px);
}
footer .footContainer img:nth-of-type(2) {
  width: clamp(50px, 40%, 200px);
}
footer .footContainer div {
  max-width: 300px;
  gap: 10px;
}
footer .footContainer div b {
  font-size: 15px;
}
footer .footContainer div p {
  font-size: 12px;
  font-weight: 500;
  color: #bababa;
}

@media (max-width: 1100px) {
  header {
    cursor: pointer;
    padding: 20px !important;
  }
  header .menu {
    display: none;
  }
  .apps {
    position: absolute;
    top: 100px;
    opacity: 0.7;
    z-index: -2;
    opacity: 0.3;
    transform: rotate(0deg);
  }
  .space {
    position: absolute;
    top: 100px;
    opacity: 1;
    z-index: -2;
    width: 100%;
  }
  .mob1 {
    position: absolute;
    left: 0px;
    top: 229px;
    width: clamp(200px, 50%, 500px);
    transform: rotate(39deg);
    opacity: 0.4;
    display: none;
  }
  .mob2 {
    position: absolute;
    right: 0px;
    top: 109px;
    width: clamp(200px, 50%, 900px);
    transform: rotate(-39deg);
    opacity: 0.4;
    display: none;
  }
  main h1 {
    height: auto;
    text-align: center;
    min-height: 80px;
    height: 120px;
    width: 75%;
    line-height: 60px;
  }
  .inputContainer {
    display: grid;
    grid-template-columns: repeat(2, 160px) !important;
    gap: 25px;
    justify-items: center;
  }
  .crd {
    margin-top: 20px;
  }
  .clearbutton {
    color: white;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1.2px;
    cursor: pointer;
  }
  .clearbutton:hover {
    color: #d4a0ff;
  }
  footer {
    padding: 20px 20px;
  }
  footer .footContainer {
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
  }
}/*# sourceMappingURL=index.css.map */