:root {
  --bg-color: #290752;
  --text-color: #ffffff;
  --primary-color: #681bc3;
  --secondary-color: #ff3b97;
  --tertiary-color: #fec401;
  --accent-color: #bfff9c;
  --font-family: "DM Sans", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #2a094f;
  background: linear-gradient(45deg, rgb(104, 27, 195) 0%, rgb(255, 59, 151) 55%, rgb(254, 196, 1) 100%);
  color: var(--text-color);
  font-family: var(--font-family);
  text-align: center;
  padding: 1rem;
  position: relative;
}

.Noise {
  background: url("../images/noise.png") repeat;
  mix-blend-mode: overlay;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.btn {
  display: inline-block;
  height: 3rem;
  width: 16rem;
  position: relative;
  border: none;
  border-radius: 999px 200px 999px 999px;
  cursor: pointer;
  overflow: hidden;
  background-color: transparent;
}
.btn:hover .btn__bg {
  scale: 0.94;
}
.btn:hover .btn__text-out {
  transition: transform 1s cubic-bezier(0.32, 0.99, 0.49, 0.99), opacity 0.4s;
  transform: translateY(-33.333333%);
  opacity: 0;
}
.btn:hover .btn__text-in {
  transition: 1s all cubic-bezier(0.32, 0.99, 0.49, 0.99);
  transform: translateY(0);
  opacity: 1;
}
.btn:hover .btn__bg__layer-first, .btn:hover .btn__bg__layer-second, .btn:hover .btn__bg__layer-third {
  border-radius: 60% 60% 0 0;
  transform: translateY(1rem);
}
.btn:hover .btn__bg__layer-first {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 200ms, border-radius 0.2s cubic-bezier(0.19, 1, 0.22, 1) 270ms;
}
.btn:hover .btn__bg__layer-second {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 300ms, border-radius 0.2s cubic-bezier(0.19, 1, 0.22, 1) 470ms;
}
.btn:hover .btn__bg__layer-third {
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 380ms, border-radius 0.2s cubic-bezier(0.19, 1, 0.22, 1) 670ms;
}
.btn__text-out, .btn__text-in {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  margin: auto;
  font-weight: 700;
  font-size: 1rem;
  z-index: 10;
}
.btn__text-in {
  opacity: 0;
  transform: translateY(33.333333%);
}
.btn__bg {
  height: inherit;
  width: inherit;
  transition: scale 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: var(--accent-color);
  border-radius: 999px 200px 999px 999px;
  overflow: hidden;
}
.btn__bg__layer {
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  translate: -50%;
  border-radius: 999rem 999rem 0 0;
  border: none;
  width: 120%;
  height: 200%;
  z-index: 20;
  transform: translateY(100%) translateX(0);
}
.btn__bg__layer-first {
  background-color: var(--primary-color);
}
.btn__bg__layer-second {
  background-color: var(--secondary-color);
}
.btn__bg__layer-third {
  background-color: var(--tertiary-color);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

img {
  max-width: 90px;
  height: auto;
}

h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1rem 0 0.25rem 0;
  line-height: 1;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.soon {
  margin: 1rem 0 0 0;
  font-weight: 700;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 999px 200px 999px 999px;
}

.Socials__List {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
}
.Socials__Item {
  display: block;
  width: 100%;
  height: 100%;
}
.Socials__Icon {
  width: 100%;
  height: auto;
  fill: white;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.Socials__Link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 2.2rem;
  border-radius: 0.4rem;
  overflow: hidden;
  background-color: transparent;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.Socials__Link:hover {
  background-color: var(--accent-color);
}
.Socials__Link:hover .Socials__Icon {
  scale: 0.9;
  fill: var(--bg-color);
}

.Modal__Quizz {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: 2rem 2rem 0.4rem 2rem;
  background-color: var(--primary-color);
  width: 100%;
  max-width: 20rem;
  overflow: hidden;
  box-shadow: 0px 0px 24px 0px rgba(18, 2, 38, 0.35);
}
.Modal__Title {
  font-size: 1.5rem;
  line-height: 100%;
  font-weight: 700;
}
.Modal__Desc {
  font-size: 0.85rem;
}

footer {
  position: absolute;
  bottom: 1rem;
  font-size: 0.875rem;
}

@media (min-width: 960px) {
  .Modal__Quizz {
    position: absolute;
    right: 1rem;
    bottom: 3rem;
    bottom: 1rem;
  }
  .Modal__Desc {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  body {
    justify-content: center;
  }
  main {
    gap: 0.5rem;
  }
  img {
    max-width: 180px;
  }
  h1 {
    font-size: 2.2rem;
  }
  .Modal__Title {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */