body {
  font-family: Arial, sans-serif;
  background-color: #f3e5f5; /* lila claro */
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  position: relative;
  background-color: #ffffff;
  padding: 5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

/* Logo fijo a la derecha */
header .logo {
  position: absolute;
  right: 2rem;        /* separación del borde derecho */
  top: 50%;
  transform: translateY(-50%);
  width: 250px;       /* podés cambiarlo a lo que quieras */
  height: auto;
}

/* Texto absolutamente centrado */
.header-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* centra en ambos ejes */
  text-align: center;
}

.header-text h1 {
  margin: 0;
  font-size: 3rem;
  color: #4a148c;
}

.header-text p {
  margin: 0.75rem 0 0;
  font-size: 1.25rem;
  color: #555;
}



main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10rem 1rem;
}

.player-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 4.5rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.player-container h2 {
  margin-bottom: 2.5rem;
  color: #4a148c;
}

ul#playlist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

ul#playlist li {
  margin: 0.5rem 0;
}

ul#playlist a {
  text-decoration: none;
  color: #6a1b9a; /* violeta medio */
  font-weight: bold;
}

ul#playlist a:hover {
  color: #4a148c;
}

audio {
  width: 100%;
  margin-top: 1rem;
}

footer {
  background-color: #e1bee7; /* violeta pastel */
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}
