#art {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  align-self: stretch;
  z-index: 1500;
}
#art-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
}
#art-header-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
}
#art-header-heading-icon {
  width: 3.9375rem;
  height: 3.9375rem;
  aspect-ratio: 1/1;
  background: url(/public/media/gifs/pointer2.gif) lightgray 50% / cover
    no-repeat;
}
.art-header-heading-description {
  align-self: stretch;
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: var(--subheading-font);
  line-height: normal;
}


/* Tablet View */
@media screen and (max-width: 1024px) {
  #art {
    gap: 2rem;
    /* padding: 1.5rem; */
  }

  #art-header-heading-icon {
    width: 3rem;
    height: 3rem;
  }

  .art-header-heading-description {
    font-size: 0.8rem;
  }
}

/* Mobile View */
@media screen and (max-width: 480px) {
  #art {
    gap: 2rem;
    /* padding: 1.5rem; */
  }

  #art-header-heading-icon {
    width: 2rem;
    height: 2rem;
  }

  .art-header-heading-description {
    font-size: 0.6rem;
  }
}
