*{
	font-family: lato, sans-serif;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
:root {
	color-scheme: normal;
}
html, body {
	min-height: 100vh;
	background-color: #0d0221;
	margin: 0;
	padding: 0;
}

body{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5vh 5vw;
}

#whole-page{ /* main page box centering and sizing */
	
	position: relative;
	width: 100%;
	max-width: 1400px;
	display: flex;
	flex-direction: column;
	background-color: #261447;
}

main{
	display: flex;
	width: 100%;
}

/* banner and sub div's */

header {
	display: flex;
	justify-content: center;
	border: 5px solid #f6019d;
	align-items: center;
	height: 15vh;
	background-color: #ff6c11;
}

.banner {
	flex-basis: auto;
}
#title {
	color: #2de2e6;
	background-color: #261447;
	border: 5px solid #f6019d;
	padding: 10px;
}
/* container of left and right flex boxes */
.center-page {
	display: flex;
	width: 100%;
	min-height: 140vh;
	max-height: 140vh;
}

/* left column div's */
.left-side {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	border: 5px solid #f6019d;
	flex: 1.5;
	gap: 15px;
	padding: 15px;

	overflow-y: auto;
}

#upper-img{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	min-width: 0;
	height: 25vh;

}

#upper-img img{
	
	max-width: 90%;
	height: 20vh;
	display: block;
	border: 5px solid #ff6c11;

}

.left-side h2{
	padding-top: 10px;
	padding-bottom: 10px;
	color: #2de2e6;
}

.left-side article {
	flex: 0;
	border: 2px solid #ff6c11;
	text-align: center;
	font-size: 0.8rem;
	font-family: 'Courier New', monospace;
	color: #2de2e6;
	padding: 10px;
	margin-bottom: 3vh;
}

.left-side p {
	font-family: 'Courier New', monospace; 
}

.left-side nav{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;

	flex-shrink: 0;
}

.page-link{
	border: 3px solid #f6019d;
	font-size: 1.2rem;
	padding: 12px 5px;
	width: 100%;
	cursor: pointer;
	background-color: #ff6c11;
	color: #2e2157; 
}

/* right column div */
#right-side {
	display: flex; /* nested container */
	flex-direction: column;
	border: 5px solid #f6019d;
	flex: 7;
	min-width: 0;
	height: 100%;
}

.blog {
	flex: 1;
	font-family: 'Courier New', monospace;
	overflow-y: auto;
	padding: 20px;
	
}
.blog img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 15px auto;
}

.blog p{
	font-family: 'Courier New', monospace; 
}

.keyring {
	display: flex;
	height: 5vh;
	border: 2px solid #f6019d;
	justify-content: space-evenly;
	align-items: center;
}


footer {
	display: flex;
	height: 7vh;
	justify-content: space-evenly;
	align-items: center;
	border: 2px solid #f6019d;
}

#test {
	border: 5px solid #f6019d;
}

ul {
	padding-left: 40px;
}

#spacer {
	background-color: #0d0221 !important;
	height: 0vh;
}

.content {
	padding: 5vh 20px;
	border: 5px solid #ff6c11;
	width: 90%;
	margin: auto;
	color: #ff6c11;
}
