* {
    box-sizing: border-box;
}

html {
    background-color: black;
    font-family: helvetica;
    color: seashell;
    opacity: 0.9;
    font-size: 22px;

}

body {
    margin: 0;
}

h2 {
    text-align: center;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 69px;
    background-color: black;
    border-bottom: 1px solid seashell;
    width: 100%;
}

.header img {
    height: 50px;
    margin-left: 10px;
}

.logo {
    height: 50px;
    align-items: flex-end;
}

.nav a {
    color: seashell;
    text-decoration: underline;
    padding: 10px 20px;
    margin: 0px;
}

.jumbotron {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("mission-background.jpg");
    height: 700px;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
}

.jumbotron-text {
    align-content: center;
    text-align: center;

}

.jumbotron-text h2,
h4 {
    margin: 0;
    background-color: black;
    width: 1200px;
    padding: 15px;
}

#totm-text {
    text-align: center;
    margin: 20px;
}

.totm {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
    background-color: black;
    max-width: 1000px;
    margin: 0 auto;
}

.totm img {
    height: 200px;
    width: 300px;
    margin-bottom: 10px;

}

.totm figure {
    text-align: center;
    margin: 10px;
}


#locations {
    background-image: url("locations-background.png");
    height: 500px;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: overlay;
    padding-bottom: 50px;
}

#locations h2 {
    margin-top: 50px;
}


.container {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    align-content: center;
    margin: 0 20px;
    opacity: 1;


}

.box {
    width: 300px;
    margin: 0 20px;
    background-color: black;
    flex-grow: 1;
    line-height: 2em;
    opacity: 1;
}

.contact {
    height: 200px;
    text-align: center;
    line-height: 1.5em;
}

footer{
    padding: 20px;
}