html, body {
    margin: 0;
    padding: 0;
    background-image: url(./fotos/cinta\ de\ fondo.avif);
    color: #d57272;
    line-height: 1.6;
}

header {
    position: absolute;
    left: 0vw;
    top: 0vh;
    width: 100vw;
    height: 15vh;
    background-color: rgb(212, 137, 25);
    color: white;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

header p {
    margin: 10px 0 0;
}

main {
    padding: 20px;
}

section {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #f7b733;
    background-color: #1a1a1a;
    border-radius: 5px;
}

section h2 {
    color: #f7b733;
}


.imagenes {
    display: flex;
    justify-content: center;
    gap: 15px; 
    margin: 20px 0;
}

.imagenes img {
    width: 150px;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 5px;
}

.ranking-img {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    border: 2px solid #ccc;
    border-radius: 5px;
}


footer {
    text-align: center;
    background-color: #222;
    color: #f7b733;
    padding: 10px 0;
    margin-top: 20px;
}


.ranking {
    box-shadow: 0 0 10px rgba(247, 183, 51, 0.7);
    transition: transform 0.3s ease;
}

.ranking:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(247, 183, 51, 1);
}
