
/* FONTS */
/* SANS-SERIF THEME FOR PRESENTATION */
.font-present{
	font-family: 'Verdana', Sans-Serif;
}
.font-present h1{
	font-size: 2em;
}
.font-present h2{
	font-size: 1.6em;
}
.font-present h3{
	font-size: 1.3em;
	font-variant: small-caps;
}
.font-present h4{
	font-size: 1.3em;
	font-style: italic;
}
/*.fa{
	color: #DDDDDD;
}

/* SERIF THEME FOR BLOGS & ARTICLES */
.font-literate{
	font-family: 'Palatino', 'Times', Serif;
	font-size: 1.1em;
}
.font-literate h1{
	font-size: 2.1em;
}
.font-literate h2{
	font-size: 1.7em;
}
.font-literate h3{
	font-size: 1.4em;
	font-variant: small-caps;
}
.font-literate h4{
	font-size: 1.4em;
	font-style: italic;
}

/* TEXT HANDLING FOR BLOGS & ARTICLES */
.just-text{
	text-align: justify;
	text-justify: auto;
}
.first-letter{
	float: left;
	font-size: 2.3em;
	margin-right: 0.2em;
	line-height: 100%;
}

/* BLOG TITLE HANDLING */
.title-container{
	display: grid;
	grid-template-columns: auto 100px;
	text-align: left;
}
.title-top{
	margin-top: 28px;
}
.title-set{
	margin-top: 48px;
	margin-bottom: 32px;
	padding-left: 3mm;
	padding-right: 3mm;
	border: 3px groove gray;
}

/* IMAGE HANDLING FOR BLOGS & ARTICLES */
.img-circle{
	border-radius: 50%;
}
.blog-avatar{
	margin: auto;
	width: 70px;
	height: 70px;
	filter: grayscale(95%);
}
.heading-icon{
	font-size: 2.8em;
	padding-top: 18px;
}

/* ANCHOR THEMES */
.no-link a{
	text-decoration: none;
}
.no-link a:hover{
	color: #5577FF;
}
.body-dark-2 a, .body-dark-1 a{
	color: #DDDDDD;
}
.body-light-1 a{
	color: #1A1A1A;
}
.blog-layer-2 a{
	color: #5577FF;
}

/* DARK THEMES */
.body-dark-1{
	background: #2F2F2F;
	color: #EEEEEE;
}
.body-dark-2{
	background: #1A1A1A;
	color: #DDDDDD;
}
/* LIGHT THEMES */
.body-light-1{
	background: #DDDDDD;
	color: #0A0A0A;
}

/* INFO FOOT HANDLING */
.info-container{
	display: grid;
	grid-template-columns: auto auto;
	margin-top: 50px;
	margin-bottom: 50px;
}
.info-list{
	list-style: none;
	padding: 0;
	margin: 0;
}
.info-item{
	margin-bottom: 8px;
}

/* ELEMENT POSITIONS */
.pos-absolute{
	position: absolute;
}
.pos-relative{
	position: relative;
}
.pos-fixed{
	position: fixed;
}
.no-space{
	padding: 0;
	margin: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* LAYER HANDLING */
.blog-container{
	/*max-width: 832px;*/
	max-width: 100%;
}
.blog-layer-1{
	width: 100%;
}
.text-container{
	margin-left: 3mm;
	margin-right: 3mm;
}
.blog-layer-2{
	width: 100%;
	height: 100%;
	z-index: 200;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*background: rgb(10,10,10,0.6);*/
}
.body-light-1 .blog-layer-2{
	background: rgb(250,250,250,0.7);
}
.body-dark-2 .blog-layer-2{
	background: rgb(10,10,10,0.6);
}

/* HANDLING WORKS-CITED SECTION & URLs */
.works-cited{
	width: 100%;
}
.works-cited{
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-word;
}
.break-up{
	word-break: break-all;
	-ms-word-break: break-all;
}

/* BLOG NAVIGATION LAYER & NAVBARS */
#navBar1{
	display: none;
}
#navBar2{
	display: none;
}
#contentLayer2{
	display: none;
}
.nav-layer{
	left: 0;
	width: 100%;
}
.body-light-1 .nav-bg{
	background: rgb(250,250,250,0.8);
}
.body-dark-2 .nav-bg{
	background: rgb(10,10,10,0.7);
}
.nav-layer-top{
	top: 0;
	z-index: 250;
}
.nav-layer-bottom{
	bottom: 0;
	z-index: 251;
}
.nav-layer-always{
	top: 0;
	z-index: 180;
}

.nav-bar{
	padding: 10px 20px 10px 20px;
}
.nav-list{
	list-style: none;
	display: flex;
	justify-content: space-between;
	padding: 0;
	margin: 0;
}
.nav-item{
	font-size: 1.8em;
}
.nav-icon{
	height: 30px;
}
.nav-link{
	height: 20px;
	width: auto;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	margin: 0;
}

/* GRID HANDLING */
.grid-container{
	display: grid;
	grid-template-columns: 0px auto 0px;
}

/* MEDIA QUERIES */
/* SMALL PHONE LANDSCAPE */
@media (min-width: 142mm) {
	.grid-container{
		grid-template-columns: auto 130mm auto;
	}
	.nav-always{
		left: auto;
	}
	.nav-layer-top{
		width: 130mm;
		left: auto;
	}
	.nav-layer-bottom{
		width: 130mm;
		left: auto;
	}
}
