body {
    margin: 0;  
}

/* link styles */
a {
	color: #2F2F2F;
    font-family: 'Iowan Old Style', 'Palatino Linotype', 'URW Palladio L', P052, serif;
	font-weight: 200;
}

/* nav bar background styles */
#navbar {
	/* overflow: hidden; */
	height: 70px;

	/* controls background color of nav bar */
	background: #696969;
	font-size: 10px;
	color: #000000;
}

/* tabs on nav bar positions */
#navbar ul {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px;
	list-style: none;
	line-height: normal;
	text-align: center;
}

/* style the list of pages */
#navbar li {
	display: inline-block;
	position: relative;
}

/* style the text in the nav bar */
#navbar a {
	display: block;
	padding: 0px 20px 0px 20px;
	line-height: 70px;
	text-decoration: none;
	text-align: center;
	font-size: 20px;
	font-weight: 200;
	color: #FFFFFF;
	border: none;
}

/* position of dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

/* style dropdown "Assignments" link */
.dropbtn {
    background: none;
    border: none;
    font-size: 25px;
    font-weight: 200;
    color: #FFFFFF;
    padding: 0px 0px;
    line-height: 0px;
    text-decoration: none;
    cursor: pointer;
}

/* dropdown is hidden unless you hover */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #696969;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* show on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* styles of links inside dropdown */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* background color of dropdown when hovering */
.dropdown-content a:hover {
    background-color: #575757;
}
