* {
  font-family: "Poppins";
  scroll-behavior: smooth;
}

body {
  background-color: #192033;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

h1 {
  font-size: 4rem;
  background: linear-gradient(90deg, #a2ffff 0%, #af73ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 5rem;
  margin: 0vw;
}

h2 {
  margin: 0px;
}

p {
  font-size: 1.25rem;
}

strong {
  color: black;
}

.btn {
  border: solid 3px #50faab;
  border-radius: 10px;
  background-color: #50faab;
  color: black;
  padding: 10px 20px;
  margin: 2rem 0rem 0rem 0rem;
  transition: 0.2s;
}
.btn:hover {
  border: solid 3px #50faab;
  background-color: white;
  border-radius: 7px;
  cursor: pointer;
  transition: 0.2s;
}

.mobile {
  display: none !important;
}

@media only screen and (max-width: 1500px) {
  h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 808px) {
  h1 {
    font-size: 2rem;
    line-height: 3rem;
  }
  h2 {
    font-size: 1rem;
  }
  p {
    font-size: 1rem;
  }
  .btn {
    margin: 0px;
  }
  .mobile {
    display: block !important;
  }
}/*# sourceMappingURL=default.css.map */