@charset "UTF-8";
/* CSS Document */
/*
Here are some commonly used CSS class selectors which 
-can applied to multiple elements on a page
-can be applied in and combination
*/
@font-face {
 font-family: titles;
 src: url("../fonts/projectTitles.eot"), /* EOT file for IE */
	url("../fonts/projectTitles.ttf"); /* TTF file for CSS3 browsers */
}
@font-face {
 font-family: body;
 src: url("../fonts/body.eot"), /* EOT file for IE */
	url("../fonts/body.ttf"); /* TTF file for CSS3 browsers */
}
@font-face {
 font-family: buttons;
 src: url("../fonts/buttons.eot"), /* EOT file for IE */
	url("../fonts/buttons.ttf"); /* TTF file for CSS3 browsers */
}

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-image: url(../images/background.jpg);
}
#centeringDiv {
	width: 980px;
	height: 750px;
	margin: 0 auto;
	position: relative;
	overflow:hidden;
}
header {
	width: 100%;
	height: 35px;
	position: relative;
}
#allArticlesWrapper {
	height: 600px;
	width: 6400px;
}
article {
	width: 980px;
	height: 600px;
	position: relative;
	background-color: rgba(207,207,207,0.75);
	border-radius: 100px;
	background-image: -webkit-linear-gradient(270deg,rgba(207,207,207,0.00) 0%,rgba(154,154,154,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(207,207,207,0.00) 0%,rgba(154,154,154,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(207,207,207,0.00) 0%,rgba(154,154,154,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(207,207,207,0.00) 0%,rgba(154,154,154,1.00) 100%);
	float: left;
	font-family:body;
	margin-right: 300px;
}

#allArticles {
	height: 600px;
	width: 100%;
	overflow: hidden;
	border-radius: 100px;
}
nav {
	height: 25px;
	width: 100%;
	background-color: #E8E8E8;
	position: absolute;
	border-radius: 15px;
	background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(179,179,179,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(179,179,179,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(179,179,179,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(179,179,179,1.00) 100%);
}
.btn {
	overflow: hidden;
	width: 15%;
	height: 25px;
	text-align: center;
	background-color: rgba(199,199,199,1.00);
	cursor: pointer;
	float: left;
	margin-left: 2.5%;
	margin-right: 2.5%;
	border-radius: 15px;
	position: relative;
	font-family: buttons;
	line-height: 30px;
}
.ripple {
	opacity: 0;
	width: 150px;
	height: 150px;
	position: absolute;
	float: none;
	border-radius: 150px;
	z-index: 100;
}
#DUPLICATE-AND-CHANGE-MY-NAME {/*used for a draggable div*/
	position:absolute;/*makes it draggable*/
	top:200px;
	left:100px;
	width:160px;
	height:90px;
	background:rgba(255,226,0,1.00);
	z-index:100;/*stacking order, bigger numbers are on top*/
}
p {
	text-indent:3em;/*an em is the size of a letter m*/
}
.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;
}
#photoOfSelf {/*used for a draggable div*/
	position: absolute;/*makes it draggable*/
	top: 93px;
	left: 70px;
	width: 204px;
	height: 272px;
	background-color: rgba(245,245,245,1.00);
	z-index: 100;
	background-image: url(../images/portrait.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
#musicBox {/*used for a draggable div*/
	position: absolute;/*makes it draggable*/
	top: 39px;
	left: 70px;
	width: 287px;
	height: 54px;
	z-index: 100;/*stacking order, bigger numbers are on top*/
}
.projectinfo {/*used for a draggable div*/
	position: absolute;
	z-index: 10;/*stacking order, bigger numbers are on top*/
}
#projectinfo0 {
	top: 100px;
	left: 286px;
	width: 600px;
	height: 400px;
}
#projectinfo5 {
	top: 118px;
	left: 225px;
	width: 600px;
	height: 400px;
}
#projectinfo6 {
	top: 114px;
	left: 225px;
	width: 600px;
	height: 400px;
}
#projectinfo7 {
	top: 114px;
	left: 225px;
	width: 600px;
	height: 400px;
}
#projectinfo8 {
	top: 114px;
	left: 225px;
	width: 600px;
	height: 400px;
}
.projectTitle {
	position: absolute;
	z-index: 40;
	text-align: center;
	font-size: 5em;
	font-family: Titles;
	left: 100px;
	top: 17px;
}
#projectTitle0 {
	left: 397px;
	width: 200px;
	height: 58px;
}
#projectTitle5 {
	width: 200px;
	height: 58px;
}
#projectTitle6 {
	width: 587px;
	height: 66px;
}
#projectTitle7 {
	top: 24px;
	left: 264px;
	width: 200px;
	height: 60px;
}
#projectTitle8 {
	top: 15px;
	left: 231px;
	width: 200px;
	height: 64px;
}
.webGraphic {
	position: relative;
	z-index: 40;
	top: 40%;
	max-width: 40%;
	left: 20%;
}
.webBtn {
	position: absolute;
	z-index: 1000;
	width: 100px;
	height: 25px;
	text-align: center;
	cursor: pointer;
	top: 560px;
	left: 100px;
	font-family:buttons;
}
#ripple0{
	background-color:#DAB2ED
}
#ripple1{
	background-color:#B2EDE2
}
#ripple2{
	background-color:#EDE8B2
}
#ripple3{
	background-color:#EDB2B2
}
#ripple4{
	background-color:#B2BDED
}
footer {
	text-align: center;
	font-size: x-small;
	font-family: body;
}
.webGraphic img {
	width: 100%;
}
