body {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: lightgray;
	margin: 10px;
	font-family: Roboto, monospace;
}

#main_container {
	display: block;
	margin: auto;
	position: absolute;
	padding: 3%;
	width: 97%;
	height: 97%;
	box-shadow: 0px 0px 20px red;
	background-color: white;
	box-sizing: border-box;
}

#navbar {
	display: flex;
	justify-content: space-between;
	position: fixed;
	z-index: 99;
	width: 100%;
	background-color: white;
	box-shadow: 0px 0px 20px white;
}
.nav_group {
	display: flex;
	align-content: center;
	align-items: center;
}
.nav_group a, .nav_dropbtn {
	padding: 10px;
}
.nav_group a:hover {
	background-color: cyan;
	box-shadow: 0px 0px 20px cyan;
}
.nav_active {
	pointer-events: none;
	background-color: #99FFFF;
	box-shadow: 0px 0px 20px #99FFFF;
}
.avatar_button_offset {
	display: none;
}

.nav_drop {
	position: relative;
	display: inline-block;
}
.nav_drop_content {
	display: none;
	position: absolute;
	min-width: 160px;
	z-index: 100;
	background-color: white;
	box-shadow: 0px 0px 20px white;
}
.nav_drop_content a {
	display: block;
}

.nav_drop:hover .nav_drop_content {
	display: block;
}
.nav_drop:hover .nav_dropbtn {
	background-color: cyan;
	box-shadow: 0px 0px 20px cyan;
}

.page_header {
	display: flex;
	margin: 32px;
	flex-direction: column;
	align-items: center;
}

.landing_link, .rss-item a {
	padding: 10px;
	font-size: 18px;
}

a {
	color: #009999;
	text-shadow: 0px 0px 8px #009999;
	text-decoration: none;
}
a:hover {
	color: cyan;
	text-shadow: 0px 0px 8px cyan;
}
.nav_drop_content a:hover {
	color: white;
	text-shadow: 0px 0px 8px white;
}

.disabled_link {
	color: gray;
	text-shadow: 0px 0px 8px gray;
	pointer-events: none;
}

#history_and_skills {
	display: flex;
}

#history_container {
	display: flex;
	flex-direction: column;
	width: 60%;
}
.history_header {
	background-color: lightgray;
}
.history_subcontainer {
	display: flex;
	flex-direction: column;
	padding: 5px;
	background-color: white;
}
.history_subcontainer h3, #skills_container h3 {
	margin: 0;
}

#skills_container {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}

.caption {
	display: flex;
	padding: 10px;
	color: #009999;
	font-size: 18px;
	text-align: left;
	background-color: white;
	text-shadow: 0px 0px 8px cyan;
}
.caption img {
	margin-right: 10px;
}

.box {
	box-shadow: 0px 0px 20px cyan;
	border: 2px solid #99FFFF;
	outline: 2px solid cyan;
}
.box-red {
	box-shadow: 0px 0px 20px red;
	border: 2px solid #FF9999;
	outline: 2px solid red;
}

#blog_entries_container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.blog_entry {
	display: flex;
	flex-direction: column;
	width: 200px;
	height: 200px;
}
.blog_entry a {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

#blog_post_container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.rss-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0px 0px 20px cyan;
	border: 2px solid #99FFFF;
	outline: 2px solid cyan;
}
.rss-title {
	font-size: 1.25em;
	margin: 0.83em 0;
}
.rss-items {
	list-style: none;
}

input {
	font-family: Roboto, monospace;
	color: #009999;
	text-shadow: 0px 0px 8px cyan;
}
input[type=button], input[type=button]:active {
	background-color: #009999;
	box-shadow: 0px 0px 20px #009999;
	border: none;
	color: white;
	text-shadow: 0px 0px 8px white;
}
input[type=button]:hover {
	background-color: cyan;
	box-shadow: 0px 0px 20px cyan;
}
input[type=button]:disabled {
	background-color: gray;
	box-shadow: none;
}

@media only screen and (max-width: 768px) {
	#main_container {
		width: 100%;
	}
	#history_and_skills {
		flex-direction: column;
	}
	#history_container {
		width: unset;
	}
}