/* PAGE FADE-IN ***************************************************************/

 body {
     animation: fadeInAnimation ease 2s;
     animation-iteration-count: 1;
     animation-fill-mode: forwards;
 }
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* #Typography
================================================== */
	h1, h2, h3, h4, h5 {
		color: #ffffff;
		font-family: 'arial';
		font-weight:heavy;
		 }
	
	h1 { font-size: 60px; line-height:62px;}
	h2 { font-size: 52px; line-height: 54px;}
	h3 { font-size: 44px; line-height: 46px;}
	h4 { font-size: 34px; line-height: 40px;color:#EC572C;}
	h5 { font-size: 20px; line-height: 32px;}
	h6 { font-size: 22px; line-height: 27px;}

