@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: #141414;
}

section {
  position: relative;
  width: 100vw;
  height: 100svh;
  padding: 2em;
  overflow: hidden;
}

.copy-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 2rem;
}

.copy-container h1 {
  width: 70%;
  color: #ED263D;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.hero .copy-container {
  background: #091540;
}

.cta .copy-container {
  background: #091540;
}

.outro .copy-container {
  background: #091540;
}

.about .copy-container,
.features .copy-container {
  border: 0.15rem dashed rgb(60, 60, 60);
}

.anime-text {
  width: 60%;
}

.anime-text p {
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.anime-text .word {
  display: inline-block;
  position: relative;
  margin-right: 0.2rem;
  margin-bottom: 0.2rem;
  padding: 0.1rem 0.2rem;
  border-radius: 2rem;
  will-change: background-color, opacity;
}

.anime-text .word.keyword-wrapper {
  margin: 0 0.4rem 0.2rem 0.2rem;
}

.anime-text .word span {
  position: relative;
}

.anime-text .word span.keyword {
  border-radius: 2rem;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 0.1rem 0;
  color: #141414;
}

.anime-text .word span.keyword::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 1rem);
  height: calc(100% + 0.4rem);
  background-color: #fff;
  border-radius: 2rem;
  z-index: -1;
}

.anime-text .word span.keyword.developing::before,
.anime-text .word span.keyword.secret::before,
.anime-text .word span.keyword.interactive::before {
  background-color: #7a78ff;
}

.anime-text .word span.keyword.designing::before,
.anime-text .word span.keyword.edge::before,
.anime-text .word span.keyword.storytelling::before {
  background-color: #fe6d38;
}

.anime-text .word span.keyword.creating::before,
.anime-text .word span.keyword.brands::before,
.anime-text .word span.keyword.vision::before {
  background-color: #c6fe69;
}

.anime-text .word,
.anime-text .word span {
  opacity: 0;
}

@media (max-width: 1000px) {
  .copy-container h1 {
    width: 90%;
    font-size: 2rem;
  }

  .anime-text {
    width: 90%;
  }

  .anime-text p {
    font-size: 1.25rem;
  }

  .anime-text .word {
    margin-right: 0.1rem;
    margin-bottom: 0.15rem;
    padding: 0.1rem 0.2rem;
  }

  .anime-text .word.keyword-wrapper {
    margin: 0 0.2rem 0.1rem 0.1rem;
  }
}
