.person {
    display: flex;
    max-width: 70vw;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 3px solid white;
    border-radius: 3rem;
}

.person img {
    width: 70%;
    margin-top: 3rem;
    cursor: pointer;
}

.person p {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-weight: bolder;
}

#presidente {
    margin-top: 0;
    font-size: 1.5rem;
    font-family: "Futura Heavy";
}

.person:first-of-type p:first-of-type {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 0;
}

.person .descr {
    position: fixed;
    flex-direction: column;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    backdrop-filter: blur(30px);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1040;
    cursor: pointer;
}

.descr p {
    font-family: "Futura Heavy";
}

.person .hint {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: normal;
    font-family: "Futura Heavy";
}

.descr img {
    width: 60%;
}

.descr.show {
    opacity: 1;
    visibility: visible;
}

.underline::after{
    bottom: -5px;
}

@media (min-width: 768px) {
    .descr img {
        width: 25%;
    }

}