/*
Here are some commonly used CSS class selectors which 
-can applied to multiple elements on a page
-can be applied in and combination
*/
header, nav, section, article, figure, figcaption, aside, footer {/*ensures older browsers display these tags correctly*/
	display: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: Verdana, sans-serif;/*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;
	background-color: #231F20;
}
header {
	width: 100%;
	height: 250px;
	position: fixed;
	background-image: url(
../images/giphy%20(1).gif);
	background-image: url(
../images/giphy%20(1).gif);
	background-image: url(../images/WeatheredDecking.jpg);
	top: 0px;
	left: 0px;
	text-align: center;
	color: rgba(255,255,255,1.00);
	font-size: 10em;
	padding-top: 50px;
	z-index: 1000;
	font-family: megrim;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-shadow: 0px 0px;
}
#navBox {
	width: 100%;
	position: absolute;
	height: 30px;
	left: 0px;
	bottom: 0;
}
nav {
	width: 980px;
	height: 30px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(0,0,0,0.58);
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}
#centeringDiv {
	width: 980px;
	height: 750px;
	margin-top: 302px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0;
	position: relative;
}
.btn {
	width: auto;
	float: left;
	height: 30px;
	position: relative;
	font-family: josefin-slab;
	padding-right: 0px;
	color: #FFFFFF;
	text-align: center;
	margin-right: 23px;
	cursor: pointer;
	padding-top: 6px;
	font-size: 1.1rem;
	font-variant: small-caps;
}
#btn0 {
	margin-left: 23px;
}
#allArticles {
	width: 100%;
	height: 600px;
	position: relative;
	overflow: hidden;
}
#allArticlesWrapper {
	width: 100%;
	height: 6000px;
	position: relative;
	background-color: #231F20;
	top: 0;
	left: 0;
}
article {
	width: 900px;
	height: 600px;
	position: relative;
	color: #F4F4F4;
	font-weight: 400;
	font-size: larger;
	font-family: josefin-slab;
	font-style: normal;
}
#article0 {
}
#article1 {
	
}
#article2 {
}
#article3 {
	
}
#article4 {
	
}
#article5 {
	
}
#article6 {
	
}
#article7 {
	
}
#article8 {
}
#DUPLICATE-AND-CHANGE-MY-NAME {/*used for a draggable div*/
	position:absolute;/*makes it draggable*/
	top:200px;/*the zero position is from the parent div with position: relative, change as needed*/
	left:100px;/*the zero position is from the parent div with position: relative, change as needed*/
	width:160px;/*change as needed*/
	height:90px;/*change as needed*/
	background:rgba(255,226,0,1.00);/*change as needed*/
	z-index:100;/*stacking order, bigger numbers are on top*/
}
p {
	text-indent: 3em;
	font-style: normal;
	font-weight: 400;
}
.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: 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*/
}
.floatLeft {/*positions an element on the left of parent div and have text wrap around it*/
	float: left;
}
.floatRight {/*positions an element on the right of parent div and have text wrap around it*/
	float: right;
}
.centerText {/*apply to p, h1, h2, h3, h4, h5, h6 tags - positions text in center of parent div*/
	text-align: center;
}
.centerBox {/*apply to div or figure tags - positions element in center of parent div - no outer text wrapping*/
	margin:0 auto;
	clear: both;
}
.clearFloats {/*apply to div tags - clears away and floating or text wrapping*/
	clear: both;
}
.roundedCorners10 {/*apply to img tags for rounded corners*/
	border-radius: 10px;
	-webkit-border-radius: 10px;/*webkit is for Chrome and Safari browsers*/
	-moz-border-radius: 10px;/*moz is for Firefox browsers*/
	-ms-border-radius: 10px;/*ms is for Internet Explorer browsers*/
	-o-border-radius: 10px;/*o is for Opera browsers*/
}
.roundedCorners15 {
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
}
.roundedCorners20 {
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.boxShadow5 {/*apply to div or img tags for shadows*/
	box-shadow: 5px 5px 5px #000000;
	-webkit-box-shadow: 5px 5px 5px #000000;
	-moz-box-shadow: 5px 5px 5px #000000;
	-ms-box-shadow: 5px 5px 5px #000000;
	-o-box-shadow: 5px 5px 5px #000000;
}
.boxShadow10 {
	box-shadow: 10px 10px 10px #000000;
	-webkit-box-shadow: 10px 10px 10px #000000;
	-moz-box-shadow: 10px 10px 10px #000000;
	-ms-box-shadow: 10px 10px 10px #000000;
	-o-box-shadow: 10px 10px 10px #000000;
}
.textShadow5 {/*apply to p, h1, h2, h3, h4, h5, h6 tags for shadows*/
	text-shadow: 5px 5px 10px #000000;
	-webkit-text-shadow: 5px 5px 10px #000000;
	-moz-text-shadow: 5px 5px 10px #000000;
	-ms-text-shadow: 5px 5px 10px #000000;
	-o-text-shadow: 5px 5px 10px #000000;
}
.textShadow10 {
	text-shadow: 10px 10px 20px #000000;
	-webkit-text-shadow: 10px 10px 20px #000000;
	-moz-text-shadow: 10px 10px 20px #000000;
	-ms-text-shadow: 10px 10px 20px #000000;
	-o-text-shadow: 10px 10px 20px #000000;
}
.projectTitle{
font-family: as:
font-size:3em:
color:#FF0004:
position:absoulte
text-align:center:
	width: 0px;
	width: 350px;
	height: 180px;
}
#projectTitle1{
	top: 18px;
	left: 245px;
	width: 350px;
	height: 180px;
	position: absolute;
	background-image: url(../images/sp1.jpg);
}

#projectTitle2{
	top: 19px;
	left: 410px;
	width: 326px;
	height: 180px;
	position: absolute;
	background-image: url(../images/Narrative1.jpg);
}
#projectTitle3{
	top: 19px;
	left: 297px;
	width: 350px;
	height: 180px;
	position: absolute;
	background-image: url(../images/DocumentaryPoonit.jpg);
}
#projectTitle4{
	top: 16px;
	left: 283px;
	width: 350px;
	height: 185px;
	position: absolute;
	background-image: url(../images/Experimental_unit.jpg);
}
#projectTitle5{
	top: 19px;
	left: 265px;
	width: 350px;
	height: 180px;
	position: absolute;
	background-image: url(../images/aliens.jpg);
}
#projectTitle6{
	top: 18px;
	left: 199px;
	width: 350px;
	height: 183px;
	position: absolute;
	background-image: url(../images/aliens.jpg);
}
#projectTitle7{
	top: 20px;
	left: 213px;
	width: 358px;
	height: 181px;
	position: absolute;
	background-image: url(../images/aliens.jpg);
}
#projectTitle8{
	top: 22px;
	left: 200px;
	width: 352px;
	height: 178px;
	position: absolute;
	background-image: url(../images/aliens.jpg);
}
.webGraphic{
	position:absolute;
	z-index:20
}
.webGraphic1{
	top:100px;
	left:200px;
	width:300px;
	height:100px;
	position:absolute;
	}
.webGraphic2{
	top:100px;
	left:200px;
	width:300px;
	height:100px;
	position:absolute;
	}
.webGraphic3{
	top:100px;
	left:200px;
	width:300px;
	height:100px;
	position:absolute;
	}
.webGraphic4{
	top:100px;
	left:200px;
	width:300px;
	height:100px;
	position:absolute;
	}
.webGraphic5{
	top:100px;
	left:200px;
	width:300px;
	height:100px;
	position:absolute;
	}
.webGraphic6{
	top:100px;
	left:200px;
	width:300px;
	height:100px;
	position:absolute;
	}
.webGraphic7{
	top:100px;
	left:200px;
	width:300px;
	height:100px;
	position:absolute;
	}
.webGraphic8{
	top:100px;
	left:200px;
	width:300px;
	height:100px;
	position:absolute;
}
.webBtn{
	width:160px;
	height:60;
	text-align:center;
	cursor:pointer;
	position:absoulte;
	z-index:50px;
}
#webBtn1{
	top: 500px;
	left: 600px;
	text-align: right;
}
#webBtn2{
	top:500px;
	left:600px;
}
#webBtn3{
	top:500px;
	left:600px;
}
#webBtn4{
	top:500px;
	left:600px;
}
#webBtn5{
	top:500px;
	left:600px;
}
#webBtn6{
	top:500px;
	left:600px;
}
#webBtn7{
	top:100px;
	left:200px;
}
#webBtn8{
	top:500px;
	left:600px;
}
.projectInfo {
	width:700px;
	height:300px;
	position:absolute;
}
#projectInfo1{
	top: 200px;
	left: 244px;
}
#projectInfo2{
	top: 200px;
	left: 394px;
	width: 595px;
}
#projectInfo3{
	top: 200px;
	left: 305px;
	width: 675px;
}
#projectInfo4{
	top: 200px;
	left: 285px;
}
#projectInfo5{
	top: 200px;
	left: 267px;
}
#projectInfo6{
	top:200px;
	left:50px;
}
#projectInfo7{
	top:200px;
	left:50px;
}
#projectInfo8{
	top:200px;
	left:50px;
}
