/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilo del cuerpo */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #000000;
  color: #333;
  padding: 20px;
}

/* Encabezado */
.header {
  background-color: #011808;
  color: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.header p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* Botones */
.button {
  background-color: #2f3232;
  color: #f2e3e3;
  border: none;
  padding: 12px 24px;
  margin: 10px 5px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;

}

.button:hover {
  background-color: #018786;
  color: #fff;
}

/* Banner estilo carrusel */
.banner {
  width: 100%;
  margin: 30px 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Botones principales debajo del banner */
.botones-principales {
  text-align: center;
  margin: 30px 0;
}

/* Secciones de artistas */
.artist {
  background-color: #b9d6c2;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(253, 253, 253, 0.1);
  text-align: center;
  margin-bottom: 40px;
}

.artist h2 {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.artist p {
  font-size: 1em;
  margin-bottom: 10px;
  line-height: 1.6;
}

.artist img {
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  margin: 20px 0 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rating {
  font-size: 1.5em;
  margin-top: 10px;
  color: gold;
}