#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hero p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: -30px;
    width: 80vw;
    text-align: center;
}

#missionValues {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: #DBE7C9;
    padding: 10vh 0;
}

.mission {
    margin: 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50vw;
}

.mission h2 {
    font-size: 2.5rem;
    text-align: center;
}

.mission p {
    font-size: 1.5rem;
    text-align: center;
}

footer{
    background-color: black;
    color: #DBE7C9;
}

.footerText p a {
    text-decoration: none;
    color: #DBE7C9;
}


@media (max-width: 768px) {
    #hero h1 {
        line-height: normal;
    }

    #hero p {
        font-size: 1rem;
    }

    #missionValues {
        flex-direction: column;
    }

    .mission {
        width: 80vw;
    }
    .mission p {
        font-size: 1rem;
    }
}