* {
	font-size: 13pt;
}

body {
	background-color: rgba(25, 25, 25, 1.0);
	color: rgba(255, 255, 255, 1.0);
	font-family: "Trebuchet MS";
	width: 80%;
	margin: auto;
	padding: 1px 0 0 0;
}

nav {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 1.0);
	border-radius: 30px;
	min-height: 3em;
	gap: 1px;
	flex-wrap: nowrap;
}

.nav-link {
	display: flex;
	/*background-color: rgba(255, 0, 0, 1.0);*/
	/*color: #124559;*/
	color: rgba(173, 52, 62, 1.0);
	font-weight: bold;
	flex-shrink: 0;
	min-height: 3em;
	align-items: center;
	justify-content: center;
	padding: 0 1em 0 1em;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
}

.nav-link:hover {
	border-top: 2px solid rgba(173, 52, 62, 1.0);
	/*border-bottom: 2px solid rgba(173, 52, 62, 1.0);*/
	/*border-radius: 10px;*/
	transition: border-bottom 1s ease, border-top 1s ease;
}

a {
	text-decoration: none;
}

/* ==================== COMMON CSS ABOVE ==================== */

.project-items {
	background-color: rgba(0, 0, 0, 1.0);
	margin: 2em 0 2em 0;
	padding: 1em 0 2em 0;
	border-radius: 50px;
	height: auto;
	overflow: hidden;
}

.item-1 {
	padding: 0 0 1em 0;
	border-bottom: 1px solid rgba(255, 255, 255, 1.0);
	font-size: 14pt;
	text-align: center;
	height: 1rem;
}

.description {
	padding: 2em 2em 1em 2em;
	font-size: 10pt;
	height: auto;
}

a {
	color: rgba(255, 255, 255, 1.0)
}