/* Universal Rules */


body {
    font-family: Helvetica, sans-serif;
    font-size: 22px;
    color: seashell;
    background-color: black;
    opacity: 0.9;
    text-align: center;
}

/* Header Section */

header {
    height: 69px;
    padding: 0 10px;
    background-color: rgba(0, 0, 0, 0.377);
    display: flex;
    justify-content: space-between;
    text-align: center;
    border-bottom: 1px solid seashell;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header ul {
    list-style: none;
}

header li {
    display: inline;
    padding:  0px 10px;
}

header img {
    height: 50px;
}

header a {
    text-decoration: underline;
    color: seashell;
}

header a:hover {
    color: white;
    text-decoration: none;
}

/*Hero Image Section */

.hero-img {
    height: 700px;
    width: 1200px;
    background-image: url(./media/images/img-mission-background.jpg);
    background-position: center;
    margin: 69px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.hero-img h2,
.hero-img h4 {
    background-color: black;
    margin: 0;
    padding: 10px 0;
}

/* Images infographics Section*/

.info-img {
    width: 1000px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 40px 0;
    

}

.info-img img {
    height: 200px;
    width: 300px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.top-row,
.bottom-row {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Locations Section */

.locations {
    height: 500px;
    width: 1200px;
    margin: auto;
    padding-bottom: 40px;
    background-image: url(./media/images/img-locations-background.jpg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.place-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 15px;
}

.place {
    width: 300px;
    background-color: rgba(0, 0, 0, 0.545);
    opacity: 1;
    border-radius: 20px;
}

.place p {
    line-height: 3em;
}

/*Contact Info Section*/

.contact {
    height: 200px;
}

/* Copyright Section */

.copyright {
    text-align: left;
    padding: 20px;
}