body {
    font-family: 'Roboto', sans-serif;
    background: white;
    font-size: 26px;
}

h1 {
    color: #ec1c21;
}

h2 {
    color: #ec1c21;
    font-size: 1em;
}

a {
    color: #ec1c21;
}

img {
    width: 100%;
}

#memberImage {
    max-width: 490px;
}

.imageList {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

#docs {
    width: 90%;
    max-width: 700px;
    margin: auto;
    text-align: center;
}

#welcome {
    width: 90%;
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.docSection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.docSection div {
    margin: 10px;
}
.formField {
    display: flex;
    margin-bottom: 10px;
    justify-content: center;
}

.formFieldRight {
    display: flex;
    margin-bottom: 10px;
    justify-content: right;
}

.formLabel {
    width: 200px;
    text-align: left;
}

input {
    width: 300px;
}

#sendButton {
    width: 100px;
    font-size: 20px;
    margin-left: 200px;
}

textarea {
    width: 300px;
    height: 200px;
}

#quotes {
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}

#staff {
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: center;
}

.quote {
    display: flex;
    flex-direction: column;
    background: #ec1c21;
    color: white;
    width: 300px;
    margin: auto;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 40px;
    margin-top: 0;
}

.quoteText {
    min-height: 200px;
    padding-bottom: 10px;
}

.quoteName {
    text-align: right;
}

.quoteText:before {
    content: open-quote;
    font-size: 2em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}

.quoteText:after {
    content: close-quote;
    visibility: hidden;
}

.preview {
    width: 200px;
    border: 1px solid black;
}

.staffImageHolder {
    border: 1px solid black;
}

.staffDiv {
    width: 300px;
    height: 350px;
    margin: 10px;
}

.staffBioText {
    font-size: 14px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.staffBio {
    font-size: 14px;
    color: white;
    padding: 0;
    position: absolute;
    transform: translate(0, -100%);
    width: 280px;
    height: 280px;
    opacity: 0;
    transition: opacity 0.5s;
}

.staffBio:hover {
    opacity: 1;
    transition: opacity 0.5s;
}

.staffName {
    text-align: center;
    width: 100%;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
    body {
        font-size: 18px;
    }

    .quoteText {
        height: 70px;
        border-bottom: 2px solid white;
    }

    .staffDiv {
        width: 200px;
        height: 230px;
        margin: 10px;
    }
    .staffBio {
        font-size: 10px;
        width: 180px;
    }
}