/*
Here are some commonly used CSS class selectors which 
-class rules can applied to multiple elements on a page
-can be applied in any combination
*/
@font-face {/*instructions to browser where to find your custom font*/
	font-family: p0btnfont;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src:		url(../fonts/p0btnfont.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
	    	url(../fonts/p0btnfont.eot);/*.eot for IE browsers*/	
}
@font-face {/*instructions to browser where to find your custom font*/
	font-family: monofur;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src:		url(../fonts/monofur.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
	    	url(../fonts/monofur.eot);/*.eot for IE browsers*/	
}
@font-face {/*instructions to browser where to find your custom font*/
	font-family: whiterabbit;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src:		url(../fonts/whiterabbit.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
	    	url(../fonts/whiterabbit.eot);/*.eot for IE browsers*/	
}
@font-face {/*instructions to browser where to find your custom font*/
	font-family: titleFont;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src:		url(../fonts/titleFont.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
	    	url(../fonts/titleFont.eot);/*.eot for IE browsers*/	
}
@font-face {/*instructions to browser where to find your custom font*/
	font-family: Blacklisted;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src:		url(../fonts/Blacklisted.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
	    	url(../fonts/Blacklisted.eot);/*.eot for IE browsers*/	
}
* {
	box-sizing:border-box;/*This allows you to set and border width and padding but the div will retain its set width and set height*/
}
html, body {
	width:100%;
	min-height:100%;
	height:auto;
}
#allArticles #allArticlesWrapper #article9 {
}
header, nav, section, article, figure, figcaption, aside, footer {/*ensures older browsers display these tags correctly*/
	display:block;
	/*DON'T ADD anything else in this selector block - only this property should be in this CSS selector set*/
}
body {/*these are the 5 basic CSS properties and values to start a website*/
	font-family: monofur;/*change this for your design*/
	font-size: 100%;/*DON'T CHANGE THIS VALUE HERE - you can set font sizes in other selector styles*/
	color: rgba(0,0,0,1.00);/*main text color, default black, change as needed*/
	margin: 0;/*removes default edges*/
	padding: 0;/*removes default settings*/
	z-index: 0;/*stacking order - small numbers a below high numbers*/
	position: relative;
	background-image: url(../images/Simple%20abstract%20Wallpapers%20HD%2009%202560x1600.jpg);
	background-color: #000000;
	background-repeat: no-repeat;
	background-size: 1660px 946px;
}
#centeringDiv {
	width: 980px;/*optimum width for both desktops, laptops, and tablets*/
	height: 850px;/*optimum height for both desktops, laptops, and tablets*/
	margin: 0 auto;/*0 = no margin for top and bottom and auto = same margin for left and right*/
	position: relative;/*all children divs inside centeringDiv take their (x,y) position from top left of centeringDiv*/
	z-index: 1;
	background-color: rgba(255,255,255,0.24);
}
header {
	padding: 10px;
	width: 100%;
	height: 150px;
	position: relative;/*all children divs inside header take their (x,y) position from top left of header*/
	right: -189px;
	top: -47px;
}
nav {
	position: absolute;
	width: 200px;/*change as needed*/
	height: 400px;/*change as needed*/
	z-index: 1000;/*stacking order, bigger numbers are on top*/
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	left: 0px;
	top: 50%;
	margin-top: -200px;
}
.btn {
	font-family: p0btnfont;
	font-size: 2.5em;
	position: relative;/*makes it draggable*/
	text-align: center;
	z-index: 1001;/*stacking order, bigger numbers are on top*/
	cursor: pointer;
	width: 100%;
	margin-bottom: 10px;
	left: auto;
}
section {/*used for the main content area*/
	position:relative;
	width:100%;
	min-height:600px;
	height:auto;
	z-index:899;/*stacking order - below nav and .btn and article*/	
}
#allArticlesWrapper{
	position:relative;
	width:9800px;
	height:600px;
}
article {/*used for the main content area*/
	position: relative;
	width: 980px;
	min-height: 600px;
	height: auto;
	float: left;
	padding: 10px;
	z-index: 900;/*stacking order - below nav and .btn but above section*/
	top: 43px;
}
article p {
	text-indent: 3em;
	font-size: 20px;
}
footer {
	clear:both;/*clears away and floating or text wrapping*/
	position:relative;
	text-align:right;
	font-size:0.8em;
	width:100%;
	line-height:1.2em;/*This will help to vertically center the text */
	height:auto;
	z-index:800;/*stacking order - below article, nav, and .btn*/		
}
/*===========Class rules to apply to multiple elements in the HTML===============================*/
.frame {/*this creates a frame around photo/text*/
	width: auto;/*fits the frame tightly around the photo/text*/
	height: auto;/*fits the frame tightly around the photo/text*/
	margin: 3px 10px 10px 10px;/*separates the outer wrapping text away from the frame border*/
	padding: 5px;/*separates the inner photo/text away from the frame border*/
	text-align: center;/*centers any caption under/above the photo inside frame*/
	border: 1px dotted #000000;/*styles the frame - adjust as desired*/
}
.frame p, figure p, figcaption p {text-indent: 0px;}/*for any paragraphs inside photo frames*/
.floatLeft {	float: left;}/*positions an element on the left of parent div and have text wrap around it*/
.floatRight {float: right;}/*positions an element on the right of parent div and have text wrap around it*/
.centerText {text-align: center;}/*apply to p, h1, h2, h3, h4, h5, h6 tags - positions text in center of parent div*/
.centerBox {	margin:0 auto;clear: both;}/*apply to div or figure tags - positions element in center of parent div - no outer text wrapping*/
.clearFloats {clear: both;}/*apply to div tags - clears away and floating or text wrapping*/
.roundedCorners10 {border-radius: 10px;}/*apply to img tags for rounded corners*/
.roundedCorners15 {border-radius: 15px;}
.roundedCorners20 {border-radius: 20px;}
.boxShadow5 {box-shadow: 5px 5px 5px #000000;}/*apply to div or img tags for shadows*/
.boxShadow10 {box-shadow: 10px 10px 10px #000000;}
.textShadow5 {text-shadow: 5px 5px 10px #000000;}/*apply to p, h1, h2, h3, h4, h5, h6 tags for shadows*/
.textShadow10 {text-shadow: 10px 10px 20px #000000;}

#article1 {
	top: 53px;
}
#article2 {
}
#article3 {
}
#article4 {
}
#article5 {
}
.articleGraphic {
	border: 1px solid #000;
	width: 334px;
	position: absolute;
	height: 204px;
	z-index: 9;
	background-image: url(url);
	top: 249px;
	left: 322px;
}
.articleGraphic img {
	width: 100%;
	height: auto;
}
.articleTitle {
	width: 100%;
	left: 0px;
	top: -23px;
	position: absolute;
	height: 75px;
	font-size: 2em;
	text-align: center;
	z-index: 10;
	font-family: Blacklisted;
}
.articleContent {
	position: absolute;
	padding: 10px;
	left: 0px;
	width: 100%;
	font-family: monofur;
	font-size: 20px;
	top: 9px;
}
.webLink {
	width: 200px;
	height: 150px;
	position: absolute;
	font-family: monofur;
	font-size: 20px;
	top: 499px;
	left: 406px;
}
#photoOfSelf {
	height: auto;
	width: auto;
	margin-top: 25px;
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 5px;
	float: left;
	top: 203px;
}
#musicBox {
	position: absolute;
	width: 200px;
	height: 27px;
	top: 351px;
	left: 41px;
	z-index: 10000;
}
#introWhiteBox {
	width:100%;
	height:100%;
		background-color:#FFF;
		opacity:1;
		position:absolute;
		top:0;
		left:0;
		z-index:99999;
		text-align: center;
		display:flex;
		align-items:center;
		justify-content: center;
}
#nameBox {
	font-size:8em;
	font-family:	p0btnfont;
	color: rgba(70,111,234,1.00);
}
footer {
	font-size:10px;
	color: rgba(255,255,255,1.00);
	}
	/* Effect 5: same word slide in */
.cl-effect-5 a {
	overflow: hidden;
	padding: 0 4px;
	height: 1em;
}
*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
	font-family: 'Raleway', sans-serif;
}

nav a {
	position: relative;
	display: inline-block;
	margin: 15px 25px;
	outline: none;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1.35em;
}
.cl-effect-5 a span {
	position: relative;
	display: inline-block;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}

.cl-effect-5 a span::before {
	position: absolute;
	top: 100%;
	content: attr(data-hover);
	font-weight: 700;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.cl-effect-5 a:hover span,
.cl-effect-5 a:focus span {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
}

/* Effect 5: same word slide in and border bottom */
.cl-effect-6 a {
	margin: 0 10px;
	padding: 10px 20px;
}
#articleGraphic8 {
	height: 183px;
	top: 282px;
}
#articleGraphic2 {
	height: 225px;
}
#articleGraphic5 {
	height: 199px;
}
#articleGraphic3 {
	height: 188px;
}
#articleGraphic4 {
	height: 198px;
}
#articleGraphic9 {
	height: 183px;
}
#articleGraphic7 {
	height: 183px;
}
