::selection {
  text-decoration: none;
}

@font-face {
  font-family: Upcommerce;
  src: url("/fonts/Cerebri-Sans-Bold.ttf");
}

* {
  box-sizing: border-box;
}

html {
  height: -webkit-fill-available;
  background: linear-gradient(
    56deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(7, 0, 73, 1) 100%
  );
}

body {
  background: linear-gradient(
    56deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(7, 0, 73, 1) 100%
  );
  margin: 0;
  overflow: hidden;
  height: 100vh;
}

.app {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-family: "Upcommerce", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

h1 {
  font-size: 22px;
  line-height: 32px;
}

.logo,
.cta {
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.cta,
.cta a {
  color: #fff;
  text-decoration: none;
}

.cta {
  margin-top: 10px;
}

p {
  font-size: 20px;
  margin-top: 0px;
}

a:hover {
  -webkit-mask-image: linear-gradient(
    -75deg,
    rgba(0, 0, 0, 0.6) 10%,
    #000 50%,
    rgba(0, 0, 0, 0.6) 70%
  );
  -webkit-mask-size: 200%;
  animation: shine 2s infinite;
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }

  to {
    -webkit-mask-position: -50%;
  }
}

.cta i {
  margin-right: 10px;
}

svg {
  width: 400px;
  height: auto;
}

@media only screen and (max-width: 768px) {
  svg {
    width: 300px;
  }
}

.type a {
  overflow: hidden;
  border-right: 0.15em solid white;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0;
  animation: blink-caret 0.75s step-end infinite;
  color: #fff;
  text-decoration: none;
}

.type span {
    margin-right: 4px;
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}

.particle {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(10px);
}

@keyframes moveParticles {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(20px, 20px);
  }
  50% {
    transform: translate(0, 0);
  }
  75% {
    transform: translate(-20px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
