h1 {
    color: #012E40;
    font-size: xxx-large;
    font-weight: bolder;
    text-transform: uppercase;
    text-align: center;
}

.description {

    display: flex;
    flex-direction: row;
    height: 120px;
    margin: auto;
    color: #012E40;
    width: 960px;

    & .logo-container {
        width: 120px;
        background: #012E40;
    }

    & .desc {

        padding-left: 20px;
        padding-bottom: 20px;
        flex: 1;

        & h3 {
            margin-top: 0;
        }

        border-bottom: 3px solid #012E40;
        border-left: 3px solid #012E40;

    }

}

h2.title {
    color: #012E40;
    font-size: xx-large;
    font-weight: bolder;
    text-transform: uppercase;
    text-align: center;
    width: 800px;
    margin: 30px auto;
}

.people-container {

    width: 900px;
    margin: auto;
    padding: 30px;
    background: #012E40;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;

    & .row {

        display: flex;
        justify-content: space-around;

        & .people {

            width: 210px;
            color: #F2E3D5;

            &.president {
                & div.img {
                    width: 200px;
                    height: 200px;
                }
            }

            &.co-president {
                align-self: flex-start;

                & div.img {
                    width: 175px;
                    height: 175px;
                }
            }

            & div.img {
                width: 150px;
                height: 150px;

                margin: auto;

                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;

                border-radius: 200px;
                border: solid 5px #026773;

                background-image: url("/img/tronbinoscope/DorianFalconnet.jpg");
            }

            & h4 {
                text-transform: uppercase;
                text-align: center;
                font-size: larger;
                margin: 10px 0;
            }

            & p {
                margin: 0;
                text-align: center;
                text-transform: uppercase;
                /*font-weight: bold;*/
            }

        }

    }

    & p.img-credit {
        margin: 0;
        color: #012E40;
        position: absolute;
        bottom: -20px;
        right: 10px;

        text-transform: uppercase;
        font-weight: bold;
        font-size: x-small;
    }

}