body {
  /* background-color: #ef8172; */
  background-color: black;
  font-size: 1.7rem;

}

.jumbotron {
  background-color: black;
  color: #fff;
}

/* .jumbotron h1 {
  margin-top: 20px;
  font-family: 'Monoton', cursive;
  color: magenta;

} */
.custom-select-lg {
  font-size: 3rem;
  line-height: 1.2;
  padding: .5rem 1rem;
  height: auto;
  /* You can set this to auto or a fixed value larger than 2.875rem */
}

.jumbotron h1 {
  margin-top: 40px;
  /* increase this value to add more space */
  font-family: 'Montserrat', sans-serif;
  color: magenta;
  font-weight: 700;
}

.multilingual-description {
  font-size: 3rem;
  /* rest of your properties */
  margin-top: 30px;
  border: 2px solid magenta;
  border-radius: 10px;
  padding: 20px;
  background-color: black;
  color: #fff;
}

.language-desc {
  padding: 10px;
  margin-top: 10px;
}

.main-description {
  margin-top: 20px;
}

.description {
  /* rest of your properties */
  margin: 12px;
  color: white;
  /* font-family: 'Manjari', sans-serif; */
  /* font-family: 'Monoton', cursive; */
  /* font-family: 'Philosopher', sans-serif; */
  font-family: 'Lemonada', cursive;
}

.audio {
  text-align: center;
  border: 20px;
  padding: 0;
  margin: 0;
  width: min-content;
  height: min-content;
  top: 40px;
}

.buttonAudio {
  top: 200px;
}

.zoom-container {
  /* overflow: hidden; */

  width: 50%;
  /* or whatever width you want */
  margin: 0 auto;
  /* centers the element */

}

.zoom-image {
  transition: transform 0.9s ease;
}

.zoom-image:hover {
  transform: scale(1.2);
}

/* --- INICIO: CÓDIGO AÑADIDO PARA EL BOTÓN DE MÚSICA --- */
.btn-spotify {
  display: inline-block;
  /* Permite aplicar padding y margin */
  padding: 10px 18px;
  margin-top: 15px;
  margin-bottom: 10px;
  background-color: #1DB954;
  /* Color verde de Spotify */
  color: white !important;
  /* !important para forzar el color blanco */
  text-decoration: none;
  /* Quita el subrayado del enlace */
  border-radius: 50px;
  /* Lo hace redondeado */
  font-weight: bold;
  font-size: 0.8em;
  /* Un tamaño de letra más pequeño, relativo al contenedor */
  font-family: 'Montserrat', sans-serif;
  /* Usamos una de tus fuentes */
  transition: background-color 0.3s ease;
}

.btn-spotify:hover {
  background-color: #1ed760;
  /* Verde más brillante al pasar el ratón */
  color: white !important;
  text-decoration: none;
}

/* --- FIN: CÓDIGO AÑADIDO --- */