:root {
	--background: #f5ebeb;
	--foreground: #304156;
	--headerfont: "Roboto", sans-serif;
	--bodyfont: "Helvetica", sans-serif;
}

h1 {
	display: flex;
	justify-content: center;
	font-family: var(--headerfont);
	color: var(--foreground);
}

h2,
h3,
h4,
h5 {
	font-family: var(--headerfont);
	color: var(--foreground);
}

#blog-title {
	font-family: var(--headerfont);
	color: var(--foreground);
	font-size: 30px;
	font-weight: bold;
}

p {
	line-height: 1.5;
	font-family: "Segoe UI";
	/* var(--bodyfont); */
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
	font-family: var(--bodyfont);
	font-size: 18px;
	text-align: start;
	background-color: var(--background);
}

.navbar,
.footer {
	display: flex;
	flex-flow: row-reverse;
	align-items: center;
	font-size: 20px;
	height: 30px;
	width: 100vw;
	background-color: #456173;
	justify-content: flex-start;
	padding: 5px 5px 5px 5px;
}

#spaceholder {
	display: flex;
	flex-grow: 3;
}

.navbar #home-icon {
	height: 30px;
	display: flex;
	/* align-items: center; */
	flex-grow: 0;
	padding-left: 10px;
	/* background-color: #0ff; */
}

.navbar #nbelement,
.footer #footer-item {
	display: flex;
	flex-grow: 0;
	/* background-color: #ffc8c5; */
	color: #304156;
	justify-content: center;
	text-decoration: none;
	padding: 5px 10px 5px 10px;
	font-weight: bold;
	/* background-color: #faffef; */
}

.current,
#nbelement:hover {
	/* font-weight: bold; */
	/* background-color: #faffef; */
	text-shadow: 0 0 2px var(--background);
}

/* {
	display: flex;
	flex-grow: 0;
	background-color: #00000066;
  } */

#main {
	display: flex;
	/* justify-content: center; */
	max-width: 900px;
	width: 95vw;
	flex-direction: column;
	flex-grow: 1;
	padding: 5px 10px 5px 10px;
	/* background-color: #3C8D2F; */
}

hr {
	background-color: rgba(0, 0, 0, 0.2);
	/* width: 100%; */
	height: 0px;
}

#tracking-item {
	display: block;
	align-items: center;
	width: 100%;
	margin: 10px;
}

#tracking-item-image {
	display: flex;
	align-content: center;
	width: 90%;
	margin: 5px 0px 5px 0px;
}

#tracking-item-caption {
	margin: 5px;
	font-size: 20px;
}

#main-column-mid {
	display: block;
	flex-direction: column;
	/* background-color: #3C8D2F; */
	/* width: 900px; */
}

#post-date {
	display: flex;
	justify-content: center;
	color: rgba(0, 0, 0, 0.5);
}

.gallery {
	display: inline-block;
	border-style: solid;
	border-color: black;
	border-width: 1px;
	padding: 10px 20px 10px 20px;
	margin: 10px 10px 10px 10px;
	position: relative;
}

.gallery:hover {
	border-color: #9ecaed;
	box-shadow: 0px 0px 5px 5px #0ff;
}

.gallery .tooltip {
	display: none;
	font-size: 14px;
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.gallery:hover .tooltip {
	display: block;
	position: absolute;
	border: 1px solid black;
	background-color: #fff0b9;
	animation-name: fade-in;
	animation-duration: 2s;
	font-size: 16px;
}

#hl {
	background-color: #faffef;
}

#profile-picture-box {
	display: flex;
	flex-direction: row;
	padding: 10px;
}

#narrative-box {
	width: 30%;
	color: var(--background);
	flex-grow: 1;
	padding: 10px;
}

#profile-pic {
	flex-grow: 1;
	height: 300px;
}

#profile-picture-box:hover {
	background-color: var(--foreground);
	transition: background-color 2s ease-out 100ms;
}

.proj-icon {
	display: flex;
	background-color: #fff0b9;
	height: 8em;
	width: 8em;
	border-style: solid;
	border-color: #000000;
	border-radius: 5em;
	border-width: 0.5em;
	align-items: center;
	justify-content: center;
	font-family: sans-serif;
	font-size: 20px;
	font-style: bold;
	text-decoration: none;
}

#myInfo {
	display: flex;
	flex-direction: row;
	/* border-style: solid; */
	border-width: 5px;
	border-color: #456173;
	align-items: flex-start;
	justify-content: space-around;
	padding: 20px 10px 20px 10px;
	border-radius: 10px;
	margin: 10px 0px 10px 0px;
}

#myHistory {
	display: flex;
	flex-direction: column;
	align-items: left;
	justify-content: center;
}

#myPhoto {
	display: flex;
	border-radius: 0px;
}

.proj-icon:hover {
	background-color: red;
}

.horizontal {
	display: flex;
	flex-direction: row;
}

.vertical {
	display: flex;
	flex-direction: column;
}

#hspace {
	width: 60px;
}

.title {
	font-size: 40px;
	align-items: center;
	justify-content: center;
	background: none;
	display: flex;
	width: 100%;
}

.prog-content {
	border-style: solid;
	border-radius: 20px;
	border-color: black;
	border-width: 2px;
	font-size: 30px;
	text-align: center;
	margin: 10px 0px 10px 0px;
}

.prog-img {
	border-radius: 20px;
}

#header-icon {
	display: flex;
	align-items: stretch;
	/* width: 20%; */
	/* padding: -5px -5px -5px -5px; */
}

#title {
	display: flex;
	justify-content: center;
	font-size: 40px;
	width: 100%;
}

#nav {
	display: flex;
	justify-content: space-around;
	height: 100%;
	flex-direction: column;
	width: 20%;
	text-align: right;
}

#nav-item {
	font-size: 12px;
	text-decoration: none;
	color: #BBBBBB;
	font-size: 11px;
}

#topics {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	border-width: 1.5px;
	border-color: #3C8D2F;
}

#topics-item {
	display: flex;
	justify-content: space-around;
	width: 28%;
	/* background-color: #A13646; */
	height: 100%;
	border-width: 1.5px;
	border-color: #A13646;
	/* margin: 5px 30px 5px 30px; */
}

#topics-item-icon {
	display: flex;
	margin: 3px 3px 3px 3px;
	width: 20%;
	justify-content: center;
	align-items: center;
}

#topics-item-name {
	display: flex;
	margin: 3px 3px 3px 3px;
	width: 70%;
	font-size: 17px;
	align-items: center;
}

#myparagraph {
	font-size: 20px;
	line-height: 1.5;
}

#figure {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 0px 0.5in 0px 0.5in;
}

#figure-cap {
	justify-content: left;
	text-align: left;
}

#puzzle {
	color: red;
}

#code-link {
	border-style: dashed;
	border-width: 1px;
}

.research-item {
	background: gray;
	font-size: 20px;
	padding: 5px 0px 5px 0px;
	border-radius: 10px;
	border-width: 10px;
	border-color: yellow;
	margin: 5px 0px 5px 0px;
}

#footer-link {
	text-decoration-line: none;
	color: #BBBBBB;
}

#footer-link:hover {
	color: #BBBBBB;
	text-decoration-line: underline;
	text-decoration-style: solid;
}

.center {
	text-align: center;
}

#hline {
	margin: 50px 0px 10px 0px;
}

#docs {
	display: flex;
	flex-direction: row;
	justify-content: center;
	font-size: 25px;
	margin-bottom: 20px;
}

#docs-link {
	color: blue;
	text-decoration-line: none;
}

#docs-link:hover {
	text-decoration-line: underline;
}

#libs-panel {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 10px 10px 10px 10px;
}

#libs-panel-item {
	display: inline-block;
	height: 180px;
	width: 150px;
	margin: 10px;
}

#libs-panel-item-thumbnail {
	height: 150px;
	width: 100%;
	display: flex;
	align-items: center;
}

#libs-panel-item-caption {
	display: flex;
	height: 30px;
	background-color: orange;
	font-size: 18px;
	justify-content: center;
	align-items: center;
}

#issue {
	background-color: #E66435;
	border-radius: 10px;
	padding: 5px 10px 5px 10px;
	text-decoration-color: #524358;
}

.right-align {
	float: right; }