.banner-img {
  width: 100%;
}

#artistas {
  margin: 24px 12px;
}
#artistas h2 {
  margin-bottom: 24px;
}

#artistas .carousel {
  gap: 32px;
  display: flex;
  justify-content: center;
  transition: transform 1s ease-in-out !important;
}
.artist-card {
  background-color: #e8e8e8;
  color: black;
  border-radius: 32px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 16px;
  max-width: 360px;
}
@media only screen and (max-width: 580px) {
  #artistas .carousel {
    flex-direction: column;
    align-items: center;
  }
  .artist-card {
    max-width: 80%;
  }
}

.artist-card h3 {
  margin: 0;
  color: black;
}

.artist-card i {
  color: black;
  font-size: 38px;
  padding: 6px;
}

.artist-thumb {
  max-height: 248px;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 8px;
}
.artist-icon-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.artist-icon {
  width: 32px;
  height: 32px;
  margin: 0 12px;
}

#historia {
  background-color: #333333;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  text-align: left;
  font-weight: bold;
}

#historia h2 {
  margin: 0;
  margin-bottom: 12px;
  line-height: 1.8em;
}

#historia p {
  align-self: center;
  margin: 0px auto;
}

#historia button {
  margin-top: 20px;
  margin-left: auto;
}

.criadores {
  padding: 12px 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

#criadores .avatar {
  margin-right: 24px;
}
#criadores .avatar img {
  align-self: center;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  object-fit: cover;
}
.criadores-card {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.criadores-card span{
  font-size: 21px;
}