html body {
    margin: 0;
    padding: 0;
    font-family: 'Cabin', sans-serif;
}

.navBar {
    -webkit-box-shadow: 0 8px 6px -6px #999;
    -moz-box-shadow: 0 8px 6px -6px #999;
    box-shadow: 0 8px 6px -6px #999;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    overflow: hidden;
    background-color: white;
    
}

.navBar h1 {
    font-size: 4.5em;
    font-weight: 900;
    color: #30A8DF;
}

.navBar #hifly {
    font-weight: 100;
    color: black;
}


.navBar .menuBar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
        
}

.navBar .menuBar li {
    
    list-style-type: none;
    font-size: 1.2em;
    flex-grow: 1;
    align-self: center;
    margin-top: 50px;
    text-align: center;
    margin-right: 15px;
    border-radius: 5px;
    padding: 10px 0px;
    
}

.navBar .menuBar .active {
    color: white;
    background-color: #30A8DF;
    -webkit-box-shadow: 0 8px 6px -6px #999;
    -moz-box-shadow: 0 8px 6px -6px #999;
    box-shadow: 0 8px 6px -6px #999;
}

.navBar .menuBar li:hover {
    color: white;
    background-color: #30A8DF;
    -webkit-box-shadow: 0 8px 6px -6px #999;
    -moz-box-shadow: 0 8px 6px -6px #999;
    box-shadow: 0 8px 6px -6px #999;
}

.navBar .menuBar li a {
	padding: 10px 30px;
	border-radius: 5px;
    text-decoration: none;
    color: black;
    
}

.navBar .menuBar li a:hover {
    color: white;
}

.mainContent {
    margin-top: 125px;
    
}


