html {
    font-family: "Ubuntu", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    background-color: #EAEAEA;
    color: #343434;
    margin: 1rem;
}

body {
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 48px;
}

h2 {
    text-align: center;
    margin-top: 5rem;
    font-size: 36px;
}

.content {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.subtitle {
    font-size: 24px;
    color: #565656;
    font-weight: 600;
    margin-top: 0;
}

table,
th,
td {
    border: 1px #343434 solid;
    border-collapse: collapse;
    padding: .5rem;
    text-align: left;
}


tr:target {
    background-color: #da8a224f;
}


.people {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
}

.person {
    text-align: center;
    max-width: 180px;

    .name {
        font-weight: 600;
        margin-bottom: 0;
    }

    .role {
        font-style: italic;
        margin-top: 0;
        margin-bottom: 0;
    }

    .org {
        margin-top: 0;
        margin-bottom: 0;
    }

    .tags {
        display: inline-flex;
        flex-direction: row;
        gap: 0.5rem;
    }
}

.tag {
    border-radius: 1rem;
    background-color: teal;
    font-size: small;
    color: #EAEAEA;
    padding: 0.5rem;
}

.tag:hover {
    background-color: #008080BB;
}

.tags>a {
    text-decoration: none;
    color: inherit;
}

.person>img {
    object-fit: cover;
    border-color: #343434;
    border-width: 2px;
    border-style: solid;
    border-radius: 50%;
    width: 150px;
    height: 150px;
}


.partners {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 3rem;
    gap: 3rem;
    width: 100%;
    justify-content: center;
    align-items: baseline;
}


.partners>a>img {
    height: 60px;
    max-width: 100%;
}

footer {
    border-top: 1px #343434 dotted;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 5rem;
    font-size: small;
    text-align: right;
    display: flex;
    flex-direction: row-reverse;
    gap: .5rem;
    align-items: flex-start;
    font-weight: 300;
}