/*
	CSS Styles for the header
*/

.header {
	/* This header splits the two divs of title and navBar*/
	display: flex;

	flex-direction: row;

	/* Ensures the displayButtons can be clicked and content overlap doesn't block */
	z-index: 5;

	/* Adjusts the height of the header*/
	/*padding-top: 15px;*/
}

.logoContainer {
	width: 50%;
	align-self: center;
	padding: 10px;
}

.logo {
	display: block;
	margin: 0 auto;
	max-height: 10vh;
	min-width: 200px;
}

.navBar {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}

@media only screen and (max-width: 900px) {
	.navBar {
		width: 50%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

.navUnselected {
	/* Centers the text nicely when shrunk down*/
	text-align: center;

	/* Nav Font Settings */
	font-size: 1.2em;
	font-family: 'ZCOOL XiaoWei', serif;

	/* Give the text room on both sides */
	margin-left: 15px;
	margin-right: 15px;

	/* Bottom Line -------------------------------------------------------------------------------------------------------*/
		padding: 5px;
		/*
			We need to keep the line hidden underneath.
			If not the flex-box repositions the text by the px added to the line width that was extended.
			This is to prevent the 'hover' jumping the text. So we hide the border here.
		*/
		border-bottom: 1px solid transparent;
	/*------------------------------------------------------------------------------------------------------------------*/

	cursor: pointer;
}

.navUnselected:hover {
	border-bottom: 1px solid black;
}

.navSelected {
	border-bottom: 1px solid black;
}

