#content-header h2 {
    font-size: 3rem;
}

#info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#info div {
    text-align: left;
}

#info div h2 {
    text-align: center;
}

#info table {
    border-collapse: collapse;
    margin-top: 30px;
}

#info table tr:nth-child(2) th,
#info table tr:nth-child(3) td {
    border: none;
}

#info th {
    border-bottom: solid 2px grey;
}

#info td {
    border-bottom: solid 2px grey;
    padding: 6px;
}

#leiding {
    margin-top: 50px;
}

#leiding-title,
.leiding-title {
    font-size: 2.5rem;
}

.person:nth-child(odd) {
    justify-content: space-between;
}

.person {
    display: flex;
    margin: 20px 0;
    flex-wrap: wrap;
}

.profile-picture {
    margin: 0 30px;
}

.profile-picture img {
    border-radius: 20px;
    width: 100%;
    max-width: 445px;
    height: auto;
}

.profile-text {
    width: auto;
    text-align: left;
    padding: 20px;
}

.profile-text a {
    text-decoration: none;
}

.bold {
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .person {
        flex-wrap: nowrap;
    }

    .switch-side {
        order: 1;
    }

    .info {
        flex-wrap: wrap;
    }

    #info div {
        max-width: 600px;
    }

    #info table {
        max-width: 400px;
    }

    #info div,
    #info table {
        flex: 1 1 50%;
    }

    .profile-picture img {
        border-radius: 20px;
        width: 445px;
        height: 445px;
    }
}