*{
    box-sizing: border-box;
    font-family: sans-serif;
}

html,body{
    height: 100%;
}

.content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 2rem;
}

.content > h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #2454b9;
}

.content > h1:not(:first-child) {
    margin-top: 1rem;
}

.content > h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0.5rem 0rem;
    color: #2454b9;
}

.content > p.topic {
    font-size: 1rem;
    font-weight: 400;
    margin: 0rem;
    max-width: 35rem;
}

.chairs {
    margin: auto;
}

.chairs > h2 {
    text-align: center;
    color: #2454b9;
    font-weight: 400;
    margin: 0;
}

.members {
    display: flex;
    gap: 3rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.member-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-details > p {
    text-align: center;
    margin: 0;
}

.member-name > a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.member-image {
    height: 10rem;
    width: 10rem;
    object-fit: cover;
    margin: auto;
}

@media (max-width: 1024px) {
    .members {
        gap: 1rem;
        flex-direction: column;
    }
}