* {
  margin: 0;
  font-family: "Outfit", sans-serif;
  user-select: none;
}

a {
  text-decoration: none;
}

body {
  background-color: var(--bg-1);
  overflow: hidden;
}

:root {
  --white: #dfdfdf;
  --white-opacity: #dfdfdf2c;
  --white-opacity-2: #dfdfdf09;
  --white-opacity-3: #dfdfdf17;

  --purple: #9336eb;
  --purple-shadow: #9436eb4d;
  --purple-2: #7c3aed;
  --gray: #151515;

  --bg-1: #111111;
  --bg-2: #171717;
}

.highlight-text {
  color: var(--purple);
}

button {
  transition: 0.25s;
  cursor: pointer;
  background-color: var(--purple);
  gap: 12px;
  outline: none;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 18px;
  padding: 14px 42px 14px 32px;
  opacity: 0.85;
}

button:hover {
  opacity: 0.85;
  filter: drop-shadow(0 0 1.5rem var(--purple-shadow)) brightness(1.1);
}

button img {
  height: 24px;
}


/* main */
#main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-1);
}

#main .wrapper {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

/* icon */
#main .icon img {
  width: 64px;
}

/* text */
#main .text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--white);
  margin-bottom: 4px;
}

#main .text h1 {
  font-size: 56px;
  line-height: 64px;
}

#main .text p {
  opacity: 0.65;
  font-size: 24px;
  max-width: 840px;
}

/* animations */
@keyframes reveal {
  0% {
    transform: translateY(8px);
    opacity: 0;
  } 100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

#main .icon{
  opacity: 0;
  animation: reveal 1s forwards;
}

#main .text{
  opacity: 0;
  animation: reveal 1s forwards 0.25s;
}

#main button {
  opacity: 0;
  animation: reveal 1s forwards 0.5s;
}


/* responsive */
@media (max-width: 750px) {
  #main .text {
    gap: 6px;
  }

  #main .text h1 {
    font-size: 48px;
    line-height: 56px;
  }

  #main .text p {
    font-size: 24px;
  }
}

@media (max-width: 515px) {
  #main .wrapper {
    width: 90%;
    gap: 18px;
  }

  #main .text h1 {
    font-size: 34px;
    line-height: 44px;
  }

  #main .text p {
    font-size: 20px;
  }
}
