<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#mapid{
    height: 450px;
}
.famosos{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    height: 100%;
}
.famoso{
    flex-basis: 33%; /* Cambiar este valor a 25% si se desean agregar 8 famosos*/
    flex-grow: 1;
    display: flex;
    flex-flow: column;
    text-transform: capitalize;
}
.sub-title{
    font-weight: 500;
}
.mensaje{
    font-weight: 300;
    color: #878786;
}
.center{
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    display: inline-block;
    float: none;
}
.persona-image{
    width: 75%;
    padding-bottom: 75%;
    margin: auto;;
}
.data-info{
    padding: 2rem;
}

.section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
#personaCementerio{
    display: flex;
    align-items: stretch;
}
@media only screen and (max-width: 678px) {
    #personaCementerio{
        flex-flow: column;
    }
}
</pre></body></html>