.main {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: calc(66px + 24px);
}

.hero {
  display: flex;
  min-height: calc(100vh - 58px - 24px - 64px - 24px);
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero__image {
  display: flex;
  width: 16rem;
  height: 16rem;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 9999px;
  border: 2px solid hsl(var(--border));
  background-color: hsl(var(--card));
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--secondary));
  filter: drop-shadow(0px 0px 48px hsla(var(--primary), 0.35));
}

.hero__texts {
  display: flex;
  max-width: 20rem;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.hero__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: hsl(var(--secondary));
}

.hero__description {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: hsl(var(--muted));
}

.skills {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  padding: 3rem 1.25rem;
  min-height: calc(100vh - 58px - 24px - 66px - 24px);
}

.skills__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 48rem;
}

.skills__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.skills__title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: hsl(var(--secondary));
}

.skills__description {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: hsl(var(--muted));
}

.skills__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.skills-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skills-group__title {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: hsl(var(--secondary));
}

.skills-group__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.skills-group__icon {
  height: 1rem;
  width: auto;
}

@media (min-width: 640px) {
  .hero {
    padding: 3rem;
  }

  .hero__content {
    flex-direction: row-reverse;
    gap: 2rem;
  }

  .hero__texts {
    max-width: 24rem;
    text-align: left;
  }

  .skills {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 4rem;
  }

  .hero__content {
    gap: 3rem;
  }

  .hero__image {
    width: 24rem;
    height: 24rem;
  }

  .hero__texts {
    max-width: 32rem;
    gap: 1rem;
  }

  .hero__title {
    font-size: 3rem;
    line-height: 1;
  }

  .hero__description {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .skills {
    padding: 4rem;
  }

  .skills__title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .skills__description {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .skills-group__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 1280px) {
  .hero__content {
    gap: 6rem;
  }
}
