@import "fonts.css";
html, body {
	height: 100%;
	margin: 0;
	font-size: 16px;
	font-family: Calibri, Verdana, sans-serif;
}

body {
  	background-color: #FFFFFF;
}

h1 {
	font-family: 'PlayfairDisplay', Times, serif;
	font-weight: 400;
	font-size: 3em;
	margin: 0px 0px 0px;
}

h2 {
	font-family: 'PlayfairDisplay', Times, serif;
	color: #0f98d4;
	font-weight: 400;
	font-style: italic;
	font-size: 2em;
	margin: 0;
}

#resumeLink {
	display: none;
}

#menuButton {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 1.5em;
	display: none;
	border-radius: 10%;
	box-shadow: 0 0 5px #000;
	padding: 0.5em 0.6em;
}

#header {
	width: 100%;
	height: auto;
	background-color: #FFFFFF;
	text-align: center;
	border-bottom: 1px solid;
}

#guestbook {
	background-color: #FFFFFF;
	width: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	flex: 1;
	display: none;
	flex-direction: column;
	align-items: center;
	margin: auto;
}

#guestbookInner {
	text-align: left;
	width: 50%;
}

#viewGuestbook {
	background-color: #FFFFFF;
	width: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	flex: 1;
	display: none;
	flex-direction: column;
	align-items: center;
	margin: auto;
}

#viewGuestbookInner {
	text-align: left;
	width: 50%;
}

#errorText {
	color: red;
}

.guestbookEntry h2 {
	border-bottom: solid 1px;
}

#resume {
	background-color: #FFFFFF;
	width: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: auto;
}

#resume > ul {
	list-style-type: none;
	padding-left: 1px;
	margin-top: 0px;
}

#resume > ul li li {
	list-style-type: disc;
}

#menuList > li {
	font-family: 'PlayfairDisplay', Fallback, serif;
	font-size: 2em;
}

#content {
	background-color: yellow;
	display: none;
	width: 100%;
	height: 100%;
}

.dynamicContent {
	display: none;
}

#processing {
	display: none;
}

#menuDiv {
	background-color: none;
	width: 100%;
	height: 50%;
	margin: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#menuList {
	background-color: none;
	list-style-type: none;
	margin: auto;
	padding: 0;
}

#menuList > li {
	background-color: none;
	width: 50%;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

#footer {
	background-color: #c2c2c2;
	width: 100%;
	text-align: center;
	/*
	display: block;
	position: fixed;
	width: 100%;
	height: auto;
	bottom: 0;
	text-align: center;
	*/
}

/* Browser Breakpoints */
@media only screen and (max-width: 2560px) {
	body {
		font-size: 20px;
	}
}

@media only screen and (max-width: 1980px) {
	body {
		font-size: 16px;
	}
}

	/* MOBILE */
@media only screen and (max-width: 768px) {
	#guestbookArchitecture {
		width: 100%;
	}
	
	#menuList > li {
		width: 90%;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	
	#menuButton{
		display: block;
	}
	
	#guestbook {
		display: none;
	}
	
	#guestbookInner {
		width: 90%;
	}
	
	#viewGuestbookInner {
		width: 90%;
	}
	
	#guestbook {
		font-size: 0.7em;
	}
	
	#resume {
		font-size: 0.7em;
	}
	
	.menuItem {
		width: 90%;
	}
	
	#menuDiv {
		width: 100%;
	}
	
	.menuItem {
		font-size: 0.8em;
	}
	
	#footer {
		font-size: 0.7em;
	}
}
	/* END MOBILE */
/* END Browser Breakpoints */

.flexContainer {
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.section {
  height: 100%;
  overflow: auto;
}

.innerFlex {
	display: flex;
	flex-direction: row;
	height: 100%;
	width: auto;
	overflow-y: auto;
}