/*
File Name: navigation.css
Date: 1/20/2020
Programmer: John Garcia
*/

/* Set up menu */

/* remove bullet in front of list items in menu */
 
.header ul {
    list-style-type: none;
    margin-top: 0;
    padding-left: 0;
}

/* space between lines */

.header li {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
}
 
/* remove underline in links. */

.header li a {
    text-decoration: none;
    color: #333;
}

.header li a:hover {
    background-color: #F4F4F4;
}

/* space around each of the menu items */
  
.header li a {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
}

/* hide the checkbox and label for it, which will be used in our responsive 'hamburger' menu in a future project. */
  
.header .menu-icon, .menu-btn {
    display: none;
}