html{
    background: linear-gradient(to right, #0d051c, #01072d, #073810);
}
body{
    
    margin: 0;
    padding: 0;
    position: relative;
}
header{
    border:color(from color srgb r g b);
    background-color: #01072d;
    color: aqua;
    font-size: 30px;

}
/* Contenedor */
.contenedor-artistas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Tarjeta */
.artista {
    width: 200px;
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    transition: 0.3s;
}

/* Imagen */
.artista img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Título */
.artista h2 {
    color: #ff4c4c;
}

/* Texto */
.artista p {
    font-size: 14px;
}

/* Hover */
.artista:hover {
    transform: scale(1.1);
    background: #ff4c4c;
    color: white;
    cursor: pointer;
}