@font-face {
    font-family: "Lexend";
    src: url(../media/fonts/Lexend-VariableFont_wght.ttf) format('woff');
    font-weitght:normal;
    font-style:normal;
}
body {
    background-color: #000;
    font-family:Lexend;
}
section {
    background-color: #000;
    color: #fff;
    padding: 80px 50px;
}

h1 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}
.tablas {
    display: flex;
    justify-content: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /*resposive, se adavpta a pantallas pequeñas*/
}

article {
    flex: 1; /*Ambas columnas ocupan el mismo ancho*/
    min-width: 300px;
}

article h3 {
    border-bottom: 2px solid #333; /* Linea gris sutil debajo del subtitulo */
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 24px;
    color: #9EF07A; /* Subtítulos en verde */
}
.lista-ranking {
    list-style: none; /*asi se quita el estilo por defecto*/
    padding: 0;
    margin: 0;
}
.lista-ranking li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    transition: background-color 0.3s;
}
.lista-ranking li:hover {
    background-color: #1a1a1a; /*efecto de selecionar, al pasar se pone un poquito gris*/
}
.numero {
    font-size: 30px;
    font-weight: 600; /*letra gordita*/
    color: transparent; /* Truco para contorno o solo relleno */
    -webkit-text-stroke: 1px #9EF07A; /* efecto borde a los números*/
    color: #9EF07A;
    width: 40px;
    margin-right: 20px;
    text-align: center;
}
.info {
    display: flex;
    flex-direction: column;
}
.info h4 {
    margin: 0;
    font-size: 16px;
    color: #fff;
}
.info p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #888;
}
.cover-img {
    width: 60px;
    height: 60px;
    border-radius: 8px; /*Borde mas redondito*/
    margin-right: 20px; 
    object-fit: cover;
}
.artist-img {
    width: 60px;
    height: 60px;
    border-radius: 50%; /*redondo totalmente*/
    margin-right: 20px;
    object-fit: cover;
}