/* Colors =========================================================================================

/* CSS HEX
--coolwhite-f7fcfe
--teal-168198

*/

body{
    font-family: "Raleway", sans-serif;
    color: black;
 }

/* Fonts ============================================================================================ */
h1, h2, h3, h4 , h5, h6{
    font-family: "Bitter", serif;
    color: #168198;
}

h1{
    font-size: 2.5em;
}

p{
    font-family: "Raleway", sans-serif;
    font-size: 1.2em;
    line-height: 1.5em;
}


header{
    background-color: #f7fcfe;
}


/* Container Styles ================================================================================= */
.container{
    width: 70%;
    margin: auto;
}

/* Header Styles =================================================================================== */
.site-id h1{
    font-size: 1.7rem;
    font-weight: 400;
    text-transform: uppercase;
}

.site-id img{
    max-height: 75px;
}

    .header-flex-box{
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        justify-content: space-between;
    }

    .header-flex-item{
        width: 25%;
        overflow: hidden;
        width: auto;
    }


/* Navigation Styles =================================================================================== */

nav li{
    display: inline;
}

nav li a{
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    padding: 1.5rem;
    color: #168198;
    font-size: 1.2rem;
    display: inline-block;
    transition: 0.7s;
}

nav li a:hover{
    color: black;
}

/* Hero Image ======================================================================================= */
    #hero{
        background-color: #168198;
        text-align: center;
    }

#hero img{
    max-width: 100%;
    height: auto;
}

/* Flexbox Styles =================================================================================== */
.intro{
    padding: 50px;
}

/* Flexbox Styles =================================================================================== */

/*Styles Applied to Flex-Box Container*/
    .flex-box{
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: baseline;
    }

    header .flex-box{
        
    }


/*Styles Applied to Flex-Box Items*/
    .flex-item{
        width: 40%;
        overflow: hidden;
        transition: .7s;
        padding: 1em;
    }

    .flex-item:hover{
        transform: scale(1.15);
    }

        /* Makes Images Fit 2 Columns on Smaller Screens */
        @media screen and (max-width: 1000px){
            div.flex-item{
                width: 50%;
            }
        }

header .flex-item{
    width: auto;
}

/* About Styles =================================================================================== */
.about {
    padding: 50px;
    background-color: #168198;
    color: white;
}

.about h2{
    color: white;
}

/* Footer =============================================================================================  */
footer{
    padding-bottom: 50px;;
}