
.header {
	background: black;
	color: white;
	font-size: 2em;
	padding-bottom: 20px;
	padding-top: 20px;
	position: fixed;
	width: 1000px;
	z-index: 9999;
}
.header a{
  color: white;
}
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	text-align: center;
	}
#main{
	width: 100%; 
	min-height: 1200px;
	background-color: rgb(21, 41, 63);
	min-width: 1000px;
	margin-top: 77px;
}
h1 {
	color: #333;
	}
p {
	margin: 0;
	}
blockquote{
	border-style: groove;
	border-width: .0px;
	border-color:grey;
	border-radius: 10px;
	background:rgb(256, 2546, 256);
	margin: 6px;
	padding: 10px;
	font-style:italic;
	color: rgb(49 49 49);
	font-size: .95em;
	}
.left, .right {
	width: 15%;
	background-color: rgb(21, 41, 63);	
	}
.middle{
	display:inline-block;
	background-color: lightslategrey;
	min-width: 350px; 
	width: 70%;
	height: 100%;
	}
	
	

.category_container {
	min-height: 375px;
	width: 85%;
	max-width: 650px;
	font-weight: 500;
	margin: 25px;
	#margin-bottom: 40px;
	#padding: 25px;
	#background-color: #f4f4f4;
	border-radius: 10px;
	border-style: solid;
	border-width: 2px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

	#mix-blend-mode: lighten;
	background-size: cover;
	background-color: rgba(255,255,255, .75);
	background-blend-mode: lighten;
	transform:translate3d(0,0,0);
	/* You may add things like width, height, background-size... */
}
.category_container_background {
	border-style: solid;
	border-width: 2px;
	border-radius: 10px;
	min-height: 375px;
	max-width: 650px;
	font-weight: 500;
	
	background-blend-mode: lighten;
	transform:translate3d(0,0,0);
	/* You may add things like width, height, background-size... */
}


.category_header {
	border-bottom: thin solid #D8DFEA;
	text-align: left;
	font-size: 1.5em;
	#width: 100%;
	margin: 0px;
	}

.category_text{
	border-radius: 12px;
	background-size: cover;
	background-color: rgba(255,255,255, .85);
	background-blend-mode: lighten;
	padding: 22px;
	
	text-align: left;
	#margin-left: 1em;
	#margin-bottom: 3em;
	font-size: 1.1em;
	#width: 100%;
	min-height: 375px;
	}
.most_recent{
	min-height: 0px;
	}


.collapsible {
	background-color: #777;
	color: white;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 1.3em;
	max-width: 700px;
	z-index: 1;
	position: relative;
}
.collapsible:after {
  content: '\002B'; /* Unicode character for "plus" sign (+) */
  font-size: 1.1em;
  color: white;
  float: right;
}
.active:after {
  content: "\2212"; /* Unicode character for "minus" sign (-) */
}
.active, .collapsible:hover {
  background-color: #555;
}
.subtopic_text {
	background-color: #f4f4f4;
	margin-top: -10px;
	margin-bottom: .1px;
	z-index: 10;
	padding: 5px;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	max-width: 700px;
	font-size: 0.8em;
	font-weight: 550;
	text-align: start;
	font-style: italic;
	margin-right: 35px;
	margin-left: 35px;
	position: relative;
}
.collaps_content{
  display: none;	
  max-width: 500px;			  
}

.entry_container {			
	background-color: #f4f4f4;
	padding: 10px;
	margin: 20px;
	border-radius: 15px;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
	}
	
.entry_header {
	border-bottom: thin solid #D8DFEA;
	text-align: left;
	font-size: 1.1em;
	width: auto;
	padding: 10px;
	padding-right: 25px;
	}
.entry_text{
	text-align: left;
	margin-left: 1em;
	margin-bottom: 3em;
	font-size: 0.9em;
	width: 95%;	
	}
.entry_author{
	font-style:italic;			
	padding-top:20px;
	color:rgb(60, 66, 62);
	padding-left:20px;
	
}

.entry_id{	
	color:	rgb(244, 244, 244);
	font-size: 0.4em;
}



/* Responsive Design */
@media (max-width: 768px) {
	.header {
		font-size: 1.5em;
		left: 0px;
		width: 100%;
	}
	.category_container{
		max-width: none;
		width: auto;
	}
	.entry_container {
		max-width: none;
		width: auto;
	}
	.collapsible {
		max-width: none;
		width: 100%;
	}
	.collaps_content{
	  max-width: none;
	  width: 100%;			  
	}
	.left, .right {
		width: 0%;
		border: none;
	}
	.middle{
		padding: 0px;
		width: 100%;
	}
	#main{
		min-width: 400px; 
	}
}