.category-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.category__header{
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
.header-container{
  width: 60%;
  text-align: center;
}
.category-header__title{
  font-size: 2rem;
  margin-bottom: 1rem;
}
.category-header__subtitle{
  font-size: 1rem;
  color: var(--color-text);
}

/** RESPONSIVE **/
@media (max-width: 600px) {
  .category-header__title{
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }
  .category-header__subtitle{
    font-size: 0.9rem;
  }
}
@media (min-width: 600px) and (max-width: 800px) {}
@media (min-width: 800px) and (max-width: 1230px) {}
@media (min-width: 1230px) and (max-width: 1700px) {}