@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Kanit", sans-serif;
}

body {
  height: 100vh;
  width: 100%;
  display: flex;
  background: url("../assets/white-background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.farup {
  width: 40rem;
  height: 26rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}
.farup-header {
  display: flex;
  flex-direction: row;
  margin: 2rem 0;
  max-width: 27rem;
}
.farup-header-logo {
  margin-right: 1rem;
}
.farup-header-logo img {
  width: 5rem;
  height: 5rem;
}
.farup-header-title img {
  width: 12rem;
  height: 5rem;
}
.farup-body {
  color: #111111;
  line-height: 2.5rem;
  font-weight: 700;
}
.farup-body-launching {
  font-size: 3rem;
}
@media (max-width: 30rem) {
  .farup-body-launching {
    font-size: 2rem;
  }
}
.farup-body-website {
  font-size: 5rem;
}
@media (max-width: 30rem) {
  .farup-body-website {
    font-size: 4rem;
    line-height: 3.5rem;
  }
}
@media (max-width: 50rem) {
  .farup-body-website {
    font-size: 4rem;
    line-height: 3.5rem;
  }
}
.farup-body-actions .btn {
  display: block;
  margin: 20px 0;
  padding: 1rem 2rem;
  font-size: 16px;
  line-height: 15px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: 4px;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  background-position: top center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  transition-property: background, color;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.farup-body-actions .btn img {
  width: 0.8rem;
  height: 0.8rem;
}
.farup-body-actions .btn--primary {
  position: relative;
  color: #fff;
  border-radius: 26px;
  background-image: linear-gradient(90deg, #0065ff, #6942ef, #6554c0, #008cff, #0065ff, #6942ef);
  background-size: 400%;
  background-position: 0% 0%;
  max-width: 7rem;
}
.farup-body-actions .btn--primary::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 1.5rem;
  background-image: linear-gradient(90deg, #0065ff, #6942ef, #6554c0, #008cff, #0065ff, #6942ef);
  background-size: 500%;
  background-position: 0% 0%;
  filter: blur(10px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s;
}
.farup-body-actions .btn--primary:hover {
  animation: gradientRotate 2s infinite;
}
.farup-body-actions .btn--primary:hover::before {
  opacity: 1;
  animation: gradientRotate 2s infinite;
}
.farup-body-actions .btn--primary:active {
  color: #c3c4d5;
}
.farup-body-actions .btn--primary:focus::before {
  opacity: 1;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

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