html {
	background-color: #1f1f1f;
	color: white;
	font-family: sans-serif;
	height: 100%;
	overflow-y: hidden;
}

body {
	display: flex;
	margin: 0;
	height: 100%;
}

a {
	color: #0080ee;
}

h3 {
	margin-top: 20px;
	margin-bottom: 5px;
} 


/*==== ==== Navigation Bar ==== ====  */
.navbar {
	display: flex;
	position: sticky;
	top: 0;
	flex-direction: column;
	width: 250px;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
	background-color: #161616;
	/* outline: 2px dashed red; */
}

.navbar-logo {
	width: 200px;
	height: auto;
	cursor: pointer;
	padding-bottom: 20px;		
}


/*=== Navigation Bar Links ===*/
.navbar > a {
	/* Hug content. No big space off to the right of the links. */
	font-size: 30px;
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}
.navbar > a:hover {
	color: red;
}

#navbar-footer {
	margin-top: auto;
}


/*=== Navbar Contact Info ===*/
#contactInfo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-top: auto;
	
}

.singleContact {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
}

/* Navbar Contact Logos */
.navbar-contact-logos {
	width: 50px;
	height: auto;
	cursor: pointer;
	/* padding-bottom: 20px;	 */
}


/*=== Copyright ===*/
#copyright {
	color: gray;
	font-size: 9pt;
}

#copyright-note {
	color: white;
	font-weight: bold;
	font-size: 9pt;
}
