@charset "UTF-8";


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}


html{
	 min-width: 320px;
}




body {
	
	margin: 0;
	padding: 0;
}
.animated { 
    -webkit-animation-duration: 3s; 
    animation-duration: 3s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
} 


.fadeOut { 
    -webkit-animation-name: fadeOut; 
    animation-name: fadeOut; 
}


#pagez {
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    background-color: rgba(255,255,255,1);
    z-index: 5000;
}


#screen {
	position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
	-webkit-animation: pulse 240s infinite alternate;
	-moz-animation: pulse 240s infinite alternate;
	-ms-animation: pulse 240s infinite alternate;
	-animation: pulse 240s infinite alternate;
}

/*--------------------------------------------------
				COLOR CHANGE
---------------------------------------------------*/

@-webkit-keyframes pulse {
0% {background-color: #cbeff8;}
20% {background-color: #a9fbd9;}
40% {background-color: #f4f8cb;}
60% {background-color: #f8decb;}
80% {background-color: #f8cbdd;}
90% {background-color: #e1cbf8;}
100% {background-color: #cbeff8;}
}

@-moz-keyframes pulse {
0% {background-color: #cbeff8;}
20% {background-color: #a9fbd9;}
40% {background-color: #f4f8cb;}
60% {background-color: #f8decb;}
80% {background-color: #f8cbdd;}
90% {background-color: #e1cbf8;}
100% {background-color: #cbeff8;}
}

@-ms-keyframes pulse {
0% {background-color: #cbeff8;}
20% {background-color: #a9fbd9;}
40% {background-color: #f4f8cb;}
60% {background-color: #f8decb;}
80% {background-color: #f8cbdd;}
90% {background-color: #e1cbf8;}
100% {background-color: #cbeff8;}
}

@keyframes pulse {
0% {background-color: #cbeff8;}
20% {background-color: #a9fbd9;}
40% {background-color: #f4f8cb;}
60% {background-color: #f8decb;}
80% {background-color: #f8cbdd;}
90% {background-color: #e1cbf8;}
100% {background-color: #cbeff8;}
}


/*--------------------------------------------------
				FADE OUT
---------------------------------------------------*/

@-webkit-keyframes fadeOut { 
    0% {opacity: 1;} 
    100% {opacity: 0;} 
} 
@keyframes fadeOut { 
    0% {opacity: 1;} 
    100% {opacity: 0;} 
} 