.authors {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 2.5rem;
}

.author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author img {
    height: 180px;
    width: 180px;
    object-fit: cover;
}

.speakers {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* gap: .1rem; */
}

.speaker {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.speaker > h3, p {
    padding: 5px;
}