* {
    box-sizing: border-box;
}

h1 {
    text-align: center;
    margin-top: 40px;
}

h2 {
    font-family: 'Libre Baskerville', serif;
    font-family: 'Palanquin';
    text-align: center;
    margin-top: 3rem;
    padding-top: 10px;
    margin-bottom: 20%;
}

h3 {
    font-family: 'Libre Baskerville', serif;
    font-family: 'Palanquin';
    text-align: center;
    padding-top: 10px;
    margin-bottom: 20%;
}


h4 {
    color: white;
    margin-top: 100px;
    font-family: 'Libre Baskerville', serif;
    font-family: 'Palanquin';
    text-align: center;
    padding-top: 10px;
}

h5 {
    font-family: 'Libre Baskerville', serif;
    font-family: 'Palanquin';
    text-align: center;
}

img {
    object-fit: cover;
    border-radius: 2%;
}

.sponsor p {
    font-size: 120%;
    /* font-size: 1.2rem; */
    background-color: rgb(255, 255, 255, .5);
    box-shadow: 0px 0px 10px 0px rgb(0, 0, 0, 90%);
    padding: 10px;
}

.center {
    margin-right: 20px;
    display: flex;
    justify-content: center;
}

.content2 {
    background-image: url(../images/bckgrd.jpeg);
    background-size: 100px;
    image-rendering: crisp-edges;
    /* Set a specific height * 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 10rem;
    /* background-color: #525252; */
}

.email {
    text-align: center;
    font-size: 80%;
    margin: 0;
    margin-bottom: 10px;
}

.filler {
    width: 70%;
    height: 75vh;
    margin: auto;
}

.flex-break {
    flex-basis: 100%;
    height: 0;
}

.member-description {
    text-align: center;
}

.member-info {
    margin-bottom: 2rem;
    text-align: center;
    height: 180px;
    width: 75%;
}

.share {
    padding: 3.5rem;
    margin: 2rem;
    width: 45%;
    /* border: 1px solid black; */
}


.sponsor {
    display: flex;
    margin-bottom: 10%;
    /* width: 80%; */
}

.team {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.team-member {
    display: flex;
    width: 290px;
    justify-content: space-around;
    margin: 20px 30px;
    /* font-size: 1.5rem; */
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 0px 10px 0px rgb(0, 0, 0, 85%);
    background-color: rgb(255, 255, 255, .3);
    border-radius: 2%;
}

.team-member img {
    box-shadow: 0px 0px 10px 0px rgb(0, 0, 0, 90%);
    margin-top: 2rem;
    height: 300px;
    width: 250px;
}

.team .team-member:nth-child(5) img {
    object-position: 30%;
}

.title {
    padding: 30px 0;
}


@media (max-width: calc(20vw + 1050px)) {
    .team *:nth-child(3){
        order: -1;
    }

    .team *:nth-child(1){
        order:-2;
    }

}

@media (max-width: calc(20vw + 800px)) {
    .sponsor {
        flex-direction: column;
    }

    .share {
        width: 100%;
    }

    .team {
        flex-direction: column;
    }

    .team *:nth-child(2) {
        order: -1;
    }

    .team *:nth-child(1) {
        order: 1;
    }

    .team-member {
        flex-direction: column-reverse;
    }
}

