html, body{
	margin: 0;
	font-family: "Raleway", "Arial", sans-serif;
	/* font-display: swap; */
}

nav{
	z-index: 100;
	position: fixed;
	width: 100%;
}

#menufix {
	/* Webkit browsers can not render this fixing element correctly as a flexbox*/
	/* with a variable margin-bottom, so use an inline-block*/
	display: inline-block;
	position: relative;
	z-index: 0;
	overflow: hidden;
	justify-content: flex-end;
}

/* Nav Bar CSS */
#navList {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: black;
	border: none;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

#navLeftFlex {
	display: flex;
	justify-content: flex-start;
}

#navRightFlex {
	display: flex;
	justify-content: flex-end;
}

li.left, li.right {
	display: flex;
}

a.navLeft, a.navLeft:link, a.navLeft:visited{
	text-decoration: none;
	background-color: #000;
	color: white;
	font-weight: normal;
	padding: 1vw;
	transition-duration: 0.5s;
}

a.navLeft:hover, a.navLeft:active, a.navLeft:focus{
	text-decoration: none;
	background-color: #fff;
	color: black;
	font-weight: lighter;
	padding: 1vw;
}

a.navRight, a.navRight:link, a.navRight:visited{
	text-decoration: none;
	background-color: #000;
	color: white;
	font-weight: normal;
	padding: 1vw;
	transition-duration: 0.5s;
}

a.navRight:hover, a.navRight:active, a.navRight:focus{
	text-decoration: none;
	background-color: #fff;
	color: black;
	font-weight: lighter;
	padding: 1vw;
}

/* Special Page Layout CSS via DIV */
div.spacer {
	width:100%;
	height: 2.5vh;
	overflow: hidden;
}

div.centerer, div.allcenterer{
	display: flex;
	justify-content: center;
}

div.contained{
	padding-left: 10vw;
	padding-right: 10vw;
}

div.containedFlex {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
}

.content{
	text-align: center;
}

img.navicon{
	justify-content: center;
	max-width: 10vh;
	max-height: 10vh;
	width: 1em;
	height: 1em;
}

img.rounded{
	border-radius: 50%;
}

img.m40t30d20{
	width: 20%;
	height: 20%;
}

#navPad {
	padding: 1%;
}

footer {
	background-color: black;
	color: white;
	text-align: center;
	padding: 1%;
	margin-bottom: 0px;
}

/* Generic Link Styling */
a, a:link, a:visited{
	text-decoration: none;
	color: #888;
	transition-duration: 0.5s;
}

a:hover, a:active, a:focus{
	text-decoration: none;
	color: #000;
}

/* Card Styling */
.card {
	flex: 1;
	padding: 2vw;
	margin: 1vw;
	max-width: 30vw;
	text-align: left;
	background-color: cornsilk;
}

.card_flex{
	display: flex;
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}


/* Project Link Button Styling */
a.project:link, a.project:visited{
	text-decoration: none;
	color: #000;
	background-color: #ddd;
	padding: 2vw;
	display:block;
	margin: .5vw;
	transition-duration: 1s;
	width: 32%;
}

a.project:hover, a.project:active, a.project:focus{
	text-decoration: none;
	color: #fff;
	background-color: #000;
	padding: 2vw;
	display:block;
	margin: .5vw;
	width: 32%;
}

.subtext {
	font-size: 0.75em;
	display: block;
}

@media print {
	a.navLeft:link, a.navLeft:visited{
		text-decoration: none;
		color: white;
		font-weight: normal;
		padding: 1vw;
		margin: 1vw;
	}

	a.navRight:link, a.navRight:visited{
		text-decoration: none;
		color: white;
		font-weight: normal;
		padding: 1vw;
		border: 1px solid black;
		border-radius: 2vw;
		margin: 1vw;
	}

	a.project{
		text-decoration: none;
		color: #000;
		padding: 2vw;
		display:block;
		margin: .5vw;
		border: 1px solid black;
	}

	
	
}