/* Styles the body */
body {
    background-color: #81D5FA;
    min-height: 100%;
    margin: 0;
    padding: 0;
}



/* Styles the header */
div.header {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-image: url(img/banner.jpg);
    background-position: center;
    font-family: 'Permanent Marker', cursive;
    text-align: center;
    color: white;
}

div.header h1 {
    position: relative;
    top: 115px;
}



/* Styles the navigation bar horizontally */
ul.navBar {
    position: relative;
    top: 25px;
    width: 80%;
    list-style-type: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    overflow: auto;
}

ul.navBar li {
    float: left;
    width: 20%;
    text-align: center;
    background-color: black;
    box-sizing: border-box;
    border-radius: 50px;
}

ul.navBar li:hover {
    background-color: gray;
}

ul.navBar .active {
    background-color: red;
}

ul.navBar li a {
    display: inline-block;
    color: white;
    padding-bottom: 14px;
    padding-top: 14px;
    padding: auto;
    text-decoration: none;
    text-align: center;
    width: 100%;
}



/* Styles the content between the header and footer */
div.content {
    width: 80%;
    height: auto;
    margin: auto;
    font-family: 'Gaegu', cursive;
    padding-top: 10px;
    padding-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #76FDDD;
}



/* Styles footer */
div.footer {
    background-color: #768CFD;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 100px;
    text-align: center;
    line-height: 75px;
    font-family: 'Quicksand', serif;
    color: #76FDDD;
}



/* Floats an image to the right of some content */
div.float-image-right {
    width: 100%;
    overflow: auto;
}

div.float-image-right img {
    float: right;
    max-height: 100%;
    max-width: 100%;
}

div.float-image-right .content {
    width: 66%;
}



/* Styles the iframes*/
iframe {
    width: 100%;
    height: 1300px;
}