@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");
*, *:before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #041A26;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #0038A8;
}

input:not([type=checkbox]), select, button {
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
}

.home {
  padding: 70px 10px;
}
.home__wrapper {
  max-width: 900px;
  margin: auto;
}
.home__wrapper__title {
  text-align: center;
}
.home__wrapper__title h1 {
  font-size: clamp(2.5rem, 0.625rem + 6vw, 4rem);
  color: #fff;
  line-height: 1;
}
.home__wrapper__title h1 span {
  position: relative;
  color: #6BEDAF;
}
.home__wrapper__title h1 span svg {
  position: absolute;
  font-size: clamp(1.5rem, 0.875rem + 2vw, 2rem);
  left: -1px;
  top: -10px;
}
.home__wrapper__title p {
  font-size: clamp(0.8rem, 0.675rem + 0.4vw, 0.9rem);
  color: #808080;
  font-style: italic;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.home__wrapper__title p a {
  color: #6BEDAF;
}
.home__wrapper__generator {
  position: relative;
  max-width: 500px;
  margin: 50px auto 0;
}
.home__wrapper__generator__controller {
  display: grid;
  grid-template-areas: "one one two";
  grid-auto-columns: 1fr;
  gap: 0.5rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.home__wrapper__generator__controller__category {
  width: 100%;
  grid-area: one;
  background: #182c37;
  border-radius: 8px;
  position: relative;
}
.home__wrapper__generator__controller__category__select {
  display: flex;
  justify-content: space-between;
  padding: 25px 20px 10px;
  color: #6BEDAF;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.home__wrapper__generator__controller__category__select label {
  position: absolute;
  font-size: 0.8rem;
  color: #d9d9d9;
  top: 8px;
}
.home__wrapper__generator__controller__category__select p {
  font-size: clamp(0.95rem, 0.8875rem + 0.2vw, 1rem);
  font-weight: 500;
}
.home__wrapper__generator__controller__category__select svg {
  transition: 0.3s ease;
}
.home__wrapper__generator__controller__category__option {
  position: absolute;
  background: #0e232f;
  width: 100%;
  height: 200px;
  border-radius: 8px;
  top: 63px;
  overflow-x: auto;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  transition: 0.3s ease;
  visibility: hidden;
  opacity: 0;
  padding: 10px 0;
}
.home__wrapper__generator__controller__category__option ul {
  color: #d3d3d3;
}
.home__wrapper__generator__controller__category__option ul li {
  padding: 5px 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.home__wrapper__generator__controller__category__option ul li:hover {
  background: #041A26;
}
.home__wrapper__generator__controller__category__option::-webkit-scrollbar {
  width: 2px;
}
.home__wrapper__generator__controller__category__option::-webkit-scrollbar-track {
  background-color: transparent;
  overflow: hidden;
}
.home__wrapper__generator__controller__category__option::-webkit-scrollbar-thumb {
  background-color: #6BEDAF;
}
.active .home__wrapper__generator__controller__category__option {
  visibility: visible;
  opacity: 1;
}
.active .home__wrapper__generator__controller__category__select svg {
  rotate: 180deg;
}
.home__wrapper__generator__controller__copy {
  width: 100%;
  grid-area: two;
}
.home__wrapper__generator__controller__copy button {
  height: 100%;
  border: transparent;
  outline: none;
  background: #6BEDAF;
  border-radius: 8px;
  font-weight: 600;
  color: #0e232f;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.home__wrapper__generator__controller__copy button:active {
  background: #31e890;
}
.home__wrapper__generator__controller__dice {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
.home__wrapper__generator__controller__dice button {
  background: #6BEDAF;
  display: flex;
  padding: 20px;
  font-size: clamp(1.75rem, 1.4375rem + 1vw, 2rem);
  color: #041A26;
  border: 7px solid #041A26;
  border-radius: 50%;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  transition: transform 0.3s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.home__wrapper__generator__content {
  background: #182c37;
  margin-top: 0.5rem;
  height: 250px;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 20px 25px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.home__wrapper__generator__content p {
  font-size: clamp(1.25rem, 0.625rem + 2vw, 1.75rem);
  color: #fff;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin: auto;
}
@-webkit-keyframes showText {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes showText {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.home__wrapper__generator__content .qoute {
  position: absolute;
  font-size: 6rem;
  color: #0e232f;
}
.home__wrapper__generator__content .qoute:nth-child(1) {
  top: 0;
  left: 10px;
}
.home__wrapper__generator__content .qoute:nth-child(2) {
  bottom: 0;
  right: 10px;
}
.home__wrapper__generator__content .dice {
  font-size: 2.5rem;
  padding: 10px;
  background: #6BEDAF;
  color: #041A26;
  border-radius: 50%;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  vertical-align: middle;
}

.terms__wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 20px 10px;
}
.terms__wrapper__return {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}
.terms__wrapper__return button {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.terms__wrapper__return button svg {
  font-size: 2rem;
}
.terms__wrapper__content h1 {
  color: #6BEDAF;
  margin-bottom: 5px;
  font-size: clamp(2rem, 0.75rem + 4vw, 3rem);
}
.terms__wrapper__content ul li, .terms__wrapper__content p {
  color: #d3d3d3;
  line-height: 1.5;
  font-size: clamp(0.9rem, 0.775rem + 0.4vw, 1rem);
}
.terms__wrapper__content ul {
  padding-left: 50px;
}
.terms__wrapper__content ul li {
  list-style: disc;
  margin-bottom: 10px;
}

.footer {
  text-align: center;
  padding: 10px;
}
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 5px;
}
.footer__socials svg {
  font-size: 1.2rem;
  color: #808080;
}
.footer p {
  color: #808080;
  font-size: clamp(0.8rem, 0.675rem + 0.4vw, 0.9rem);
}/*# sourceMappingURL=index.css.map */