* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	zoom: 1;
}

h1, h2, p { 
	margin: 0;
	padding: 0;
}

p {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

footer {
	bottom: 0;
	color: #999;
	background-color: #f7f7f7;
	padding: 20px auto;
	text-align: center;
    height: 100px;
    width: 100%;
}

.mycontent {
	background: url(../img/coding_bg.jpg) no-repeat;
	background-size: 100%;
	background-attachment: fixed;	
	min-height: calc(100vh - 100px);	/* 100px is height of footer */
}

.navbar-default .navbar-nav > li > a {
	color: #000;
}

.mynavbar {
	background-color: #f7f7f7;
	padding: 2px;
    width: 100%;
    margin-bottom: 0px;
}

.mybrand {
	color: #fff !important;
	background-color: #000 !important;
	font-family: 'Holtwood One SC', serif;
	font-size: 2em;
	margin-top: 3px;
	margin-bottom: 3px;
}

#header-brand {
	display: none;
}

#body-brand {
	display: inline;
}

.mynavitem {
	border: 0;
	margin-bottom: 0;
}

.mynavitem li {
	font-size: 1.3em;
	font-weight: bold;
}

.mynavitem li a:hover {
	border: 2px solid #000;
}

.mypanel {
	background-color: #000;
	color: white;
	border: 2px solid #f0f0f0;
	border-radius: 25px;
	padding: 20px;
}

.mypanel-in {
	background-color: #000;
	color: white;
	border: none;
}

a.mybutton, a.mybutton:visited {
	font-weight: bold;
	color: #fff;
	background-color: #000;
	border: 2px solid #fff;
	/*width: 30% !important;*/
}

a.mybutton:hover {
	color: #000;
	background-color: #fff;
}

a.mybutton-ex {
	width: 100% !important;	
}

.myfooteritem {
	padding-top: 15px;
}

.section-home { height: 100vh; padding: 340px 0; }
.section-home h1 { font: 5em 'Abril Fatface', Georgia, serif; text-transform: uppercase; color: #fff; text-align: center; font-weight: bold; }
.section-home .small { font: 0.3em 'Playfair Display', Georgia, serif; letter-spacing: .06em; display: block; color: #fff; }
.section-home h1 em { display: block; font-style: normal; margin: 20px; }

.section-about { background: url(../img/coding_bg.jpg) no-repeat; background-size: 100%/*cover*/; background-attachment: fixed; width: 100%; height: 100vh; padding: 140px 0; }
.section-about h1 { font: 3em 'Abril Fatface', Georgia, serif; color: #fff; margin-bottom: 30px; font-weight: bold; }
.section-about p { font: 1.3em 'Alegreya', Georgia, serif; color: #fff; margin-bottom: 40px; }
.section-about-content { border-radius: 25px; padding: 20px; border: 3px solid #f0f0f0; }

.section-portfolio { background: url(../img/coding_bg.jpg) no-repeat; background-size: 100%/*cover*/; background-attachment: fixed; width: 100%; height: 100%; padding: 100px 0; }
.section-portfolio h1 { font: 4em 'Abril Fatface', Georgia, serif; color: #fff; margin-bottom: 30px; font-weight: bold; }
.section-portfolio h2 { font: 1.8em 'Abril Fatface', Georgia, serif; text-transform: uppercase; color: #02ff20;  }
.section-portfolio img { margin: 15px 0; }
.section-portfolio ul { padding-left: 20px; }
.section-portfolio p { color: #999; font: 1.3em 'Alegreya', Georgia, serif; }

.section-modal h1 { font: 1.6em 'Abril Fatface', Georgia, serif; color: #000; }
.section-modal p { font: 1.2em 'Alegreya', Georgia, serif; letter-spacing: .06em; display: block; color: #000; }
.section-modal button {
	font-weight: bold;
}

@media screen and (max-width: 992px) {
	#mybioimage {
		margin: 15px 0 30px 0;
	}

	.section-about p {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 768px) {
	#header-brand {
		display: inline;
	}

	#body-brand {
		display: none;
	}

	#mybioimage {
		margin: 15px 0 20px 0;
	}

	.mycontent { background-repeat: repeat-y; }

	.section-home { padding: 160px 0; }

	.section-about { background-repeat: repeat-y; height: 100%; padding: 80px 0;}
	.section-about h1 { font-size: 3em; margin-bottom: 20px; }
	.section-about p { font-size: 1.2em; margin-bottom: 10px; }
	.section-about-content { padding: 10px; }

	.section-portfolio { background-repeat: repeat-y; padding: 80px 0;}
	.section-portfolio h1 { font-size: 3em; margin-bottom: 20px; }
}

