main {
    margin: 0 auto;
    text-align: center;
    background-image: linear-gradient(to bottom, rgb(16, 65, 89), rgba(16, 65, 89, 0.5) 40%), url('../img/contact-background.jpg');
    background-size: cover;
    padding: 13vh 10vw 5vh 10vw;
}

.row {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 10vh;
}

.row.large {
    margin-top: 5vh;
}

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

.person img {
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px auto;
    transition: .2s;
}

.person div.img-container {
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
}

.person img:hover {
    transform: scale(110%);
}

.row.large .person img {
    width: 30vw;
    height: 30vw;
    max-width: 250px;
    max-height: 250px;
}

.row.large .person div.img-container {
    width: 30vw;
    height: 30vw;
    max-width: 250px;
    max-height: 250px;
}

.row.normal .person img {
    width: 20vw;
    height: 20vw;
    max-width: 200px;
    max-height: 200px;
}

.row.normal .person div.img-container {
    width: 20vw;
    height: 20vw;
    max-width: 200px;
    max-height: 200px;
}

.person p.role {
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: rgba(0, 0, 0, 0.6) 0px 2px 2px;
    margin: 0;
}

.person p.name {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 1vh 0;
    text-shadow: rgba(0, 0, 0, 0.6) 0px 2px 2px;
}

.person a {
    font-weight: 200;
    margin-bottom: 5px;
    color: #ffffff;
    text-shadow: rgba(0, 0, 0, 0.6) 0px 2px 2px;
    transition: .2s;
}

.person a:hover {
    filter: brightness(85%);
    transition: .2s;
}

.person p.socialmedia {
    margin: 0.5vh 0 0 0;
    text-shadow: rgba(0, 0, 0, 0.6) 0px 2px 2px;
}

.row.large .person p.role {
    font-size: 1.2em;
}

.row.large .person p.name {
    font-size: 1.2em;
}

.row.large .person a {
    font-size: 1em;
}

.row.normal .person p.role {
    font-size: 1em;
}

.row.normal .person p.name {
    font-size: 1em;
}

.row.normal .person a {
    font-size: 0.9em;
}

@media (max-width: 480px) {
    .row {
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        align-items: center;
        gap: 8vh;
        margin-top: 8vh;
    }

    .row.normal .person img {
        width: 30vw;
        height: 30vw;
        max-width: 250px;
        max-height: 250px;
    }

    .row.normal .person div.img-container {
        width: 30vw;
        height: 30vw;
        max-width: 250px;
        max-height: 250px;
    }

    .row.normal .person p.role {
        font-size: 1.2em;
    }

    .row.normal .person p.name {
        font-size: 1.2em;
    }

    .row.normal .person a {
        font-size: 1em;
    }
}