/* Reset
--------------------------------------------------------*/
* {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*:before, *:after {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}
/* End Reset
--------------------------------------------------------*/














body {
	padding: 50px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 100;
}
.pic {
	filter: grayscale(1);
	-webkit-filter: grayscale(1);
}



.screen {
	position: relative;
	float: left;
	cursor: pointer;
	width: 48px;
	height: 48px;
	-moz-transition: background .3s linear;
	-webkit-transition: background .3s linear;
	-o-transition: background .3s linear;
	transition: background .3s linear;
}
.screen:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
}
.screen:hover:before {
	background: none;
}







@keyframes blink {
    0% {
      opacity: .2;
    }
    20% {
      opacity: 1;
    }
    100% {
      opacity: .2;
    }
}

#loading {
	display: block;
	margi-bottom: 24px;
	font-size: 28px;
	font-weight: 100;
	font-style: italic;
	color: #BFBFBF;
	letter-spacing: -1px;	
}
#loading span {
    animation-name: blink;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

#loading span:nth-child(2) {
    animation-delay: .2s;
}

#loading span:nth-child(3) {
    animation-delay: .4s;
}



#intro h4 {
	font-weight: 100;
    font-size: 48px;
}

.emotxt {
	font-weight: 100;
    font-size: 48px;
}













.happy {
	color: rgba(233,192,68, .3);
}
.emo-happy:before {
	background: rgba(233,192,68, .3);
}
.sad {
	color: rgba(44,51,129, .3);
}
.emo-sad:before {
	background: rgba(44,51,129, .3);
}
.afraid {
	color: rgba(24,158,73,.3);
}
.emo-afraid:before {
	background: rgba(24,158,73,.3);
}
.angry {
	color: rgba(237,20,127,.3);
}
.emo-angry:before {
	background: rgba(237,20,127,.3);
}
.surprised {
	color: rgba(82,198,211,.3);
}
.emo-surprised:before {
	background: rgba(82,198,211,.3);	
}
.disgusted {
	color: rgba(102,53,49,.3);
}
.emo-disgusted:before {
	background: rgba(102,53,49,.3);
}
.hate {
	color: rgba(238,56,32,.3);
}
.emo-hate:before {
	background: rgba(238,56,32,.3);
}

.emo {
	display: inline-block;
	background: red;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}



#mydiv {
	display: inline-block;
	float: left;
	width: 100%;
	min-height: 1000px;
	margin-bottom: 500px;
}


#description {
	display: inline-block;
	float: left;
	width: 100%;
	padding-bottom: 180px;
}
.row {
	position: relative;
}
.col {
	display: inline-block;
	float: left;
	width: 50%;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 20px;
	line-height: 24px;
}
h1,
h2 {
	display: inline-block;
	float: left;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}
h1 {
	font-weight: 100;
	font-size: 72px;
	margin-bottom: 12px;
}
h2 {
	font-weight: 100;
	font-size: 32px;
	line-height: 34px;
	color: #333;
	margin-bottom: 24px;
	color: rgba(233,192,68, 1);
}



@media (max-width: 767px) {
	.col {
		width: 100%;
	}
}



































