@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,700);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
 }

html, body {
    color: #fff;
    background: #111;
    font-family: 'Open Sans Condensed', Arial, sans-serif;
}

.wrapper {
    position: relative;
    width: 500vw;
    z-index: 0;
}

/* Text */
h1, h2 {
	font-weight:bold;
	text-transform: uppercase;
	font-size:2em;
	word-spacing: 0.1em;
	letter-spacing: 0.05em;
	font-family: 'Open Sans', sans-serif;
	}

h2 {
	font-size:1.7em;
	letter-spacing: 0.065em;
}

h3 {
	text-align: right;
	padding-right: 0.8em;
	font-weight:100;
	font-size:1.4em;
	word-spacing: em;
	letter-spacing: 0.05em; 
}


h4, h5 {
    margin: 0;
    padding: 0;
    text-shadow: 1px 1px 1px rgba(0,0,0,.9);
	font-weight: bolder;
   }

footer {
    min-width:80vw;
    border: 3px solid green;
   position: absolute;
    top: 86%;
    right: 5%;
 z-index: 3;
}
   
/* h4 {
    position: absolute;
    top: 86%;
    right: 5%;
    opacity: .5;
    margin: 40px 0 0 0;
    padding: 0;
    line-height: 1em;
    font-size: 0.6em;
    text-transform: uppercase;
    text-align: right;
	 }*/

p {
    line-height: 1.4;
    text-shadow: 1px 1px 1px #000;
    }

a {
    color: #000;
    text-decoration: none;
    transition: all 0.4s ease;
    }

 a:hover {
    color: #fff;
    }



/* Header */

header {
    position: absolute;
    top: 47%;
    left: 30%;
    z-index: 999;
    color: #000;
    padding: 60px;
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    text-align: center;	
    }

header h4 {
	margin: 10% 0 0 72% ;
    font-size: 1.4em;
	font-weight: 100;
    }

header h3 span {
    font-weight: 300;
    }


/* Video Pages */

.screen {
    position: relative;
    height: 100%;
    width: 20%; /*  NOTE: numVideos/100%  */;
    float: left;
    overflow: hidden;
}

.big-image {
    min-width: 100%;
    min-height: 100%;
    height: auto;
    width: auto;
    }

.video-title {
    position: absolute;
    top: 80%;
    right: 5%;
    opacity: .5;
    margin: 40px 0 0 0;
    padding: 0;
    line-height: 1em;
    font-size: 1em;
    text-transform: uppercase;
    text-align: right;
    }

/* Nav */

nav {
    position: absolute;
    right: 5%;
    top: 45%;
    padding: 14px;
    background: #e6e6e6;
    border-radius: 40px;
    opacity: .4;
    cursor: pointer;
    z-index: 1000;
}

nav:hover {
    opacity: .9;
}

.next-icon {
    display: block;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    width: 10px;
    height: 10px;
    position: relative;
    left: -2px;
    transform: rotate(45deg);
    color: #fff;
    text-decoration: none;
}

/* Codrops Header Style 
.codrops-top {
    line-height: 24px;
    font-size: 11px;
    background: #fff;
    background: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    z-index: 9999;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    font-family: Cambria, Georgia, serif;
    box-shadow: 1px 0px 2px rgba(0,0,0,0.2);
}
.codrops-top a {
    padding: 0px 10px;
    letter-spacing: 1px;
    color: #333;
    display: inline-block;
    text-decoration: none;
}
.codrops-top a:hover {
    background: rgba(255,255,255,0.4);
}
.codrops-top span.right{
    float: right;
}
.codrops-top span.right a{
    float: left;
    display: block;
}
/* End Codrops Header Style */