#heroSect {
    background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(6, 70, 94, 0.5) ), url(../images/AboutBackground.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

h1 {
    text-align: center;
}

h2 {
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    text-align: center;
    text-decoration: underline;
}

main {
    color: white;
    display: inline-block;
    justify-content: center;
}

#photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

figure {
    text-align: center;
    margin-top: 15px;
}

figure a {
    text-decoration: underline;
}

figcaption {
    font-size: 20px;
    font-weight: bold;
    font-family: monospace, 'Times New Roman', Times, serif;
}

#photos img {
    padding: 10px;
    height: 50vw;
    width: 50vw;
    border: 3px solid white;
    box-shadow: 0 0 20px #FFFFFF;
    border-radius: 50%;
    object-fit: cover;
}

#about-description {
    padding-top: 50px;
    height: auto;
    text-align: center;
    font-size: 14px;
    width: 70%;
    margin: auto;
    text-shadow: -1px 0px black, 0 1px black, 1px 0 black, 0 -1px black;
}

#about-description p {
    padding: 5px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    color: white;
}

#color1 {
    color: #58E1E3;
}

#color2 {
    color: #58E1E3;
}

#color3 {
    color: #58E1E3;
}

@media screen and (min-width: 450px) {
    #about-description {
        padding-top: 200px;
        height: auto;
        text-align: center;
        font-size: 14px;
        width: 70%;
        margin: auto;
        text-shadow: -1px 0px black, 0 1px black, 1px 0 black, 0 -1px black;
    }
}

@media screen and (min-width: 600px) {
    #about-description {
        padding-top: 300px;
        height: auto;
        text-align: center;
        font-size: 14px;
        width: 70%;
        margin: auto;
        text-shadow: -1px 0px black, 0 1px black, 1px 0 black, 0 -1px black;
    }

    #photos img {
        height: 40vw;
        width: 40vw;
    }
}

@media screen and (min-width: 1000px) {

    #photos {
        padding-top: 30px;
    }

    #photos img {
        height: 20vw;
        width: 20vw;
    }

    figure {
        padding: 10px;
    }

    figcaption {
        font-size: 30px;
    }

    #about-description {
        font-size: 18px;
    }
}