body {
    font-family: Calibri, Aldhabi, Helvetica, sans-serif;
    background-color: white;
    margin: 0px;
}

a:link, a:visited {
    text-decoration: none;
    color: black;
}

a:hover, a:active {
    text-decoration: underline;
    color: black;
}

.header {
    width: 100%;
    /*border: 1px solid black;*/
    background-image: url("banner.jpg");
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    height: 452px;
    background-color: dimgray;
    /* align nav to bottom */
    display: flex;
}

.navbar {
    background-color: rgba(255, 255, 255, .5);
    overflow: hidden;
    /* align navbar to bottom */
    display: inline-block;
    align-self: flex-end;
    width: 100%;
}

.navbar a {
    float: left;
    color: white;
    text-align: center;
    text-shadow: 0px 2px 6px black;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 20px;

}

.navbar a:hover {
    background-color: rgba(255, 255, 255, .5);
    color: white;
}

.navbar a.active {
    background-color: white;
    color: white;
    text-shadow: 3px 3px 15px rgb(12, 86, 99);
}

/* Hide the link that should open and close the topnav on small screens */
/*
.navbar .icon {
    display: none;
}
*/

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
/*
@media screen and (max-width: 630px) {
    .navbar a:not(:first-child) {display: none;}
    .navbar a.icon {
        float: right;
        display: block;
    }
}
*/

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
/*@media screen and (max-width: 600px) {
    .navbar.responsive {position: relative;}
    .navbar.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .navbar.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}
*/

div.center {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /*width: 75%;*/
}

.content {
    margin: 1%;
    padding-top: 2em;
}

.content p {
    line-height: 1.8;
}

/* awsome fonts */
.fa-facebook {
    background: white;
    padding: 10px;
    font-size: 30px;
    width: 30px;
    text-align: center;
    text-decoration: none;
}

.fa-instagram {
    background: white;
    padding: 10px;
    font-size: 30px;
    width: 30px;
    text-align: center;
    text-decoration: none;
}

.fa-bars {
    color:white;
}

.fa:hover, .fa:active {
    text-decoration: none;
    opacity: 0.6;
}