body{
    background-color: #fffcf0;
    }


.participant {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 10px;
}

.participant * {
    animation: appear 4s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

@keyframes appear {
    from{
        opacity: 0;
        scale: 0.4;
    } to {
        opacity: 1;
        scale: 1;
    }
    
}

section p {
    font-weight: 600;
    font-size: 30px; 
    color: #565656;  
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 0.15em;
}


figure {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 20px;
    max-width: 150px;

}

figure img {
    max-width: 130px; 
    height: auto;
    margin: 20px;
    cursor: pointer;
    border-radius: 150px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

figure figcaption {
    text-align: center;
    cursor: pointer;
    color: rgb(89, 89, 89);
    padding: 5px;
    text-wrap: wrap;
    text-shadow: 4px 4px 27px rgba(0,0,0,0.19);
}


.celma-links{
    display: none;
    z-index: 10;
}
.celma-links.open{
    position:absolute;
    left: 0;
    display: flex;
}
.celma-links a{
    margin: 5px;
    color: #565656;
}


.title-participantes{
    text-align: center;
    font-weight: bold;
    color: black;
    font-size: xx-large;
    margin-top: 40px;
    padding: 7px;
}

footer p {
    margin-top: 10%;
    font-size: 10px;
}

