.music-carrousel {
  margin: 5rem;
  margin-top: 0.5rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--glass-back);
  min-width: fit-content;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.music-carrousel, h2, h3 {
  color: var(--normal-txt);
  text-align: center;
  font-family: Arial, sans-serif;
  transition: 300ms ease;
}

.music-carrousel h2 {
  font-size: 2rem;
}

.music-carrousel h3 {
  font-size: 1.75rem;
}

.container-musics {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.music-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 10px;
}

.music-card {
  font-size: 2.5rem;
  text-align: center;
  display: grid;
  grid-template-areas: 
  "intro"
  "info";
  background: #9e9e9e34;
  padding: 1rem;
  border-radius: 12px;
  max-width: 400px; /*400px*/
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  border: solid transparent 2px;
  transition: 350ms ease;
}

.music-card:hover {
  transform: translateY(-5px);
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.35);
  border: var(--hover-border);
}

.music-card:focus {
  transform: translateY(-5px);
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.35);
  border: var(--hover-border);
}

.song-img {
  grid-area: "intro";
  margin-top: 5px;
  margin-right: 5px;
  width: 100%;
  max-width: 250px;
  border-radius: 15%;
}

.song-info {
  grid-area: "info";
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 1.5rem;
}

#song-name {
  font-family: Arial, sans-serif;
  font-weight: bold;
}

#listenners {
  color: var(--normal-txt);
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
}

#year {
  background: #eec195;
  border: 2px solid #ad651d;
  padding: 0.5rem;
  font-size: 0.95rem;
  border-radius: 10px;
  box-shadow: 2px 2px 5px #ad651d81;
}

.to-app {
  text-decoration: none;
  color: black;
}

/*QUERIES*/
@media (max-width: 650px) {
  .music-carrousel {
    margin: 2rem;
    padding: 1rem;
  }
  .music-carrousel h2 {
    font-size: 1.3rem;
  }
  .music-carrousel h3 {
    font-size: 1rem;
  }
  .music-card {
    font-size: 1.2rem;
  }
}

@media (max-width: 325px) {
  .song-info {
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 250px) {
  .music-carrousel h2 {
    font-size: .9rem;
  }
  .music-carrousel h3 {
    font-size: 0.7rem;
  }
}
