.hero-body {
  min-height: 100dvh;
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero-container {
  width: min(760px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  min-height: 80dvh;
  gap: 1rem;
  transition: 1s;
}

.hero-container p {
  font-size: 1.6rem;
  color: var(--black);
  text-align: center;
  line-height: 1.35;
}

.hero-title {
  text-align: center;
}

.hero-title img {
  width: min(300px, 100%);
  border-bottom: solid 2px var(--border);
}

.title {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100px;
}

#hero-slogan-top {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  border-radius: 20px 20px 0 0;
  background-color: var(--blue);
  width: 50%;
  height: 40px;
  font-size: 2rem;
  position: absolute;
  left: 0;
  bottom: 50%;
  transform: translateY(-50%) translateX(-300px);
  transition: 1s;
}

#hero-slogan-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  border-radius: 0 0 20px 20px;
  background-color: var(--yellow);
  width: 50%;
  height: 40px;
  font-size: 2rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(50%) translateX(300px);
  transition: 1s;
}

.hero-description {
  text-align: center;
  opacity: 0;
  transition: 1s;
  max-width: 480px;
  display: grid;
  gap: 0.7rem;
}

.hero-description h2 {
  color: var(--black);
  font-size: 2rem;
  margin: 0 0 0.6rem;
  border-bottom: solid 1px var(--border);
}

.hero-description p {
  font-size: 1rem;
  line-height: 1.45;
}

.init-btn {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-transform: uppercase;
  width: 200px;
  height: 50px;
  font-size: 1.4rem;
  background-color: var(--blue);
  border: none;
  outline: none;
  color: var(--bg);
  border-radius: 20px;
  text-decoration: none;
  transition:
    transform 120ms ease,
    filter 120ms ease;
}

.init-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.init-btn:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 2px;
}

.init-btn i {
  font-size: 1.2em;
}

@media (max-width: 640px) {
  .hero-container p {
    font-size: 1.25rem;
  }

  #hero-slogan-top,
  #hero-slogan-bottom {
    font-size: 1.6rem;
  }

  .hero-description h2 {
    font-size: 1.7rem;
  }
}
