@charset "utf-8";
/* CSS Document */

html {
	webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;	
}

.logo_splash {
	width: 60%;
	height: auto;
	display: block;
	margin: 80px auto;
	
}

.info-block {
	width: 600px;
	margin: 100px auto;
	font-family: 	
}

h1 { 
	font-family: 'Dancing Script', cursive;
	font-weight: normal;
	font-size: 40px;
	text-align: center;
}

p {
	font-family: 'Martel Sans', sans-serif;
	font-size: 18px;
	text-align: center;
}

a { color: #A976DB; 
	webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;	
	text-decoration: none;
}

a:hover { color: #9006E0; }

/************************************************************************************
smaller than 790
*************************************************************************************/
@media screen and (max-width: 790px) {
	.logo_splash { width: 85%; }
	
	.info-block { width: 300px; margin: 50px auto; }
	
	h1 { 
	font-family: 'Dancing Script', cursive;
	font-weight: normal;
	font-size: 24px;
	text-align: center;
}

	p {
	font-family: 'Martel Sans', sans-serif;
	font-size: 14px;
	text-align: center;
}

}