* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, #f2f2f2, #e0e0e0);
  color: #222;
  padding: 20px;
}

header {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: #ffd700;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

main.container {
  max-width: 1000px;
  margin: 0 auto;
}

section {
  margin-bottom: 40px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #2c5364;
  margin-bottom: 10px;
}

h3, h4, h5, h6 {
  margin-top: 15px;
  color: #fff;
}

.artista {
  margin-top: 15px;
  color: #fff;
}

.album {
  margin-left: 20px;
  color: #fff;
}

.pista h6 {
  font-size: 18px;
  margin: 0;
  flex: 1;
  text-align: left;
  color: #fff;
}

.caratula-album img {
  width: 150px;
  border-radius: 4px;
}

.portada-pista {
  width: 140px;
  height: auto;
  border-radius: 6px;
}

.pistas-album {
  margin-left: 20px;
}

.pista {
  margin-top: 20px;
  padding: 15px;
  border-left: 4px solid #203a43;
  background: #f9f9f9;
  border-radius: 6px;

  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .pista {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pista h6 {
    text-align: center;
  }
}

audio,
video {
  width: 100%;
  margin-top: 10px;
  border-radius: 6px;
}

.download-links ul {
  list-style: none;
  margin-top: 10px;
  padding-left: 0;
}

.download-links li {
  margin-bottom: 5px;
}

.download-links a {
  text-decoration: none;
  color: #2c5364;
  font-weight: bold;
  transition: color 0.2s ease;
}

.download-links a:hover {
  color: #0f2027;
}

footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background-color: #203a43;
  color: #fff;
  border-radius: 8px;
  margin-left: 21.5%;
  margin-right: 21.5%;
}

header {
  text-align: center;
  padding: 20px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: inline-block;
  color: yellow;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}

.pista p strong {
  color: #222;
}

.caratula-album img:focus,
.portada-pista:focus {
  outline: 3px solid #ffd700;
  outline-offset: 4px;
}