/*
CSS Style Sheet for CS 008 assignment.
*/
/* 
    Created on : Sep 5, 2020, 1:57:31 PM
    Author     : Anthony
*/

/*******************HEADER & NAVIGATION BAR*******************/
#menu_header {
    text-align: center; /* center h1 */
}

.nav_bar > ul {
    background-color: #3C3744; /* set background color of nav bar */
    color: #FFFFFF;
    list-style-type: none; /* remove bullets from ul */
    text-align: center; /* align the items in the center of the nav bar */
    padding: 20px 0 20px 0;
    
}

.nav_bar > ul > li {
    display: inline-block;
    padding: 0 20px 0 20px;
}

.nav_bar > ul > li > a {
    text-decoration: none; /* remove the link text decoration of the items */
    color: #FFFFFF;
}

.nav_bar > ul > li > a:hover {
    color: #4D5359; /* change color of items in nav bar when cursor is hovered over them */
}