/* 	Developer: Max Coller 
	Start Date:  04/23/2023 */

/* make the nav section wider for the tablet */
nav {
	margin:-15px 0px 0px 5px;
	width: 99%;
	height: 100%;
}

/* transform the unordered list into a flex container for list items, center the list */
nav ul {
	width: 95%;
	display: flex;
	flex-direction: row;
	justify-content: center;
  	align-items: center;
}

/* make all of the list items the same width, with a border */
nav ul li { 
	flex: 1;
	margin: 0px;
	padding: 0px;
	margin: 0px;
	border: 1px solid rgb(0,0,0);
    text-align: center;
}

/* align the header with the center of the page */
header h1 {
	width:100%;
	margin: -5px 0px 0px -10px;
	text-align: center;
	font-size: 22px;
}