ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

li {
    float: left;
    color: chartreuse;
}

li a {
    display: inline-block;
    margin:4px 8px 4px 4px;
    background-color: white;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
}
a:visited{
    color: black;
}
a:hover {
    color: mediumpurple;
}
#navigationBar {
    width: 100%;
    opacity: .7;
    background-color: white;
    padding: 0px;
    margin-bottom: 6px;
}
/*****NAV BAR HTML
        <div id="navigationBar">
        <ul>
            <li><a href="home.html">Home</a></li>
            <li><a>//</a></li>
            <li><a href="intDest.html">International Destinations</a></li>
            <li><a>//</a></li>
            <li><a href="usDest.html">U.S. Destinations</a></li>
        </ul>
        </div>

********LINK FOR STYLE SHEET
        <link rel="stylesheet" type="text/css" href = "navBar.css">
*/