*{
	margin: 0;
	padding: 0;
}

html,body {
	height: 120%;
	position: relative;
}

body {
	width: 100%
	margin: 0;
	padding: 0;
	background-color: #262626;
	color: #e0e0e0; 
	
}

header {
	font-family: 'Monserrat', sans-serif;
}

#heading {
	position: absolute;
	width: 0%;
	top: 15%;
	left: 50%;
}
#bodyWrapper {
	padding-top: 1%;
	position: relative;
	top: 20%;
	overflow-x: hidden;
	width: 100%;
	
}

#home-photo {
	top: 15%;
	position: relative;
	left: 37.7%;
	width: 0%;
}

.text-link:link {
	color: #e0e0e0; 
}

.text-link:visited {
	color: #717171;
}

.main-content {
	padding-left: 15%;
	padding-right: 15%;
}
#addressing {
	
	position: relative;
	width: 0%;
	font-family: 'Monserrat', sans-serif;
}

.content-title {
	position: relative;
	width: 0%;
	padding-top: 3%;
	font-family: 'Monserrat', sans-serif;
}
.paragraph {
	padding-top: 1%;
	position: relative;
	font-family: 'Merriweather', serif;
	line-height: 1.5;

}
#portrait {
	position: relative;
	padding-top: 2%;
	padding-left: 2%;
	padding-right: 2%; 
	float: right;
}
.paragraph-content {
	padding-bottom: 2%;
	position: relative;
}
.fun-facts h3{
	font-family: 'Monserrat', sans-serif;
}
.fun-facts ul {
	text-indent: 5%;
}
.fun-facts ul li {
	list-style: none;
	padding-top: 2%;
	font-family: 'Merriweather', serif;
}
/* Credits to Online Tutorials at https://www.youtube.com/channel/UCbwXnUipZsLfUckBPsC7Jog */

 /*            *\
      Header
 \*            */
nav {
	position: fixed;
	height: 0%;
	top: 5%;
	width: 100%;
	z-index: 1;
	
}

.menu-bar ul {
	position: absolute;
	left: 50%;
	transform: translate(-50%,-50%);
	margin: 0;
	padding: 0;
	display: flex;

	
}

.menu-bar ul li {
	list-style: none;
	background-color: rgba(255,255,255,0.9);
	z-index: -1;

}

.menu-bar ul li a {
	text-align: center;
	position: relative;
	display: block;
	padding: 10px 20px;
	margin: 20px 0px;
	width: 90px;
	white-space: nowrap;
	text-decoration: none;
	text-transform: uppercase;

	color: #262626;
	font-weight: bold;
	transition: .5s;
}
.menu-bar ul li a:hover {
	color: #fff;

}
.menu-bar ul li a:before {

	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top: 1.2px solid #000;
	border-bottom: 1.2px solid #000;
	transform: scaleY(2);
	opacity: 0;
	transition: .5s;
	z-index: -1;
}

.menu-bar ul li a:hover:before {
	transform: scaleY(1.2);
	opacity: 1;
}

.menu-bar ul li a:after {

	content: '';
	position: absolute;
	top: 1.6px;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	transform: scale(0);
	transition: .5s;
	z-index: -1;
}

.menu-bar ul li a:hover:after {
	transform: scale(1);
}

 /*            *\
      Footer
 \*            */

.media-icons ul {
	position: absolute;
	top: 93%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin: 0;
	padding: 0;
	display: flex;

}

.media-icons ul li {

	list-style: none;
}

.media-icons ul li a {

	display: block;
	position: relative;
	width: 75px;
	height: 75px;
	line-height: 75px;
	font-size: 50px;
	text-align: center;
	text-decoration: none;
	background-color: #262626;
	color: #fff;
	margin: 0 9.5px;
	transition: .5s;

}
.media-icons ul li a span {
	position: absolute;
	transition: transform .5s;
}

.media-icons ul li a span:nth-child(1), 
.media-icons ul li a span:nth-child(3){

	width: 100%;
	height: 1.5px;
	background: #FFFFFF;

}

.media-icons ul li a span:nth-child(1) {

	top: 0;
	left: 0;
	transform-origin: right;
}

.media-icons ul li a:hover span:nth-child(1) {

	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s;
}

.media-icons ul li a span:nth-child(3) {

	bottom: 0;
	left: 0;
	transform-origin: left;
}

.media-icons ul li a:hover span:nth-child(3) {

	transform: scaleX(0);
	transform-origin: right;
	transition: transform .5s;
}

.media-icons ul li a span:nth-child(2), 
.media-icons ul li a span:nth-child(4){

	width: 1.5px;
	height: 100%;
	background: #FFFFFF;

}

.media-icons ul li a span:nth-child(2) {

	top: 0;
	left: 0;
	transform: scaleY(0);
	transform-origin: bottom;
}

.media-icons ul li a:hover span:nth-child(2) {

	transform: scaleY(1);
	transform-origin: top;
	transition: transform .5s;
}

.media-icons ul li a span:nth-child(4) {

	top: 0;
	right: 0;
	transform: scaleY(0);
	transform-origin: top;
}

.media-icons ul li a:hover span:nth-child(4) {

	transform: scaleY(1);
	transform-origin: bottom;
	transition: transform .5s;
}

