html { height: 100%; font-size: 16px; }
* { box-sizing: border-box; }
body {
	margin: 0; padding: 0;
	font-family: 'Catamaran', sans-serif;
	font-weight: 300;
	line-height: 1.5;
	height: 100%;
	background-color: #5a4091;
	color: #fff;
	text-align: center;
}
main { width: 90%; max-width: 1200px; margin: auto; }

img { max-width: 100%; }
.logo { margin: 75px 0; text-align: center;  }
svg { fill: #fff; position: relative; top: 3px; right: 5px; }
a { transition: all 0.5s ease .15s;	text-decoration: none; color: inherit; }
a:hover { color: #c31118; }
.flex { white-space: nowrap; }
h1 { line-height: 1.3; margin-top: 25px; }
p { margin: 40px 0;  font-size: 22px; }
.sep { padding: 0 30px; }
footer {
	margin-top: 150px;
	border-top: 1px solid #c3111860;
	padding: 20px 0px;
	text-align: center;
	letter-spacing: 2px;
}
.stagger-down {
	transform: translateY(-40px);
	transition: opacity 0.5s ease;
	animation: fade-in-stagger 0.8s ease forwards;
}

.stagger-up {
	transform: translateY(40px);
	transition: opacity 0.5s ease;
	animation: fade-in-stagger 0.8s ease forwards;
}

@keyframes fade-in-stagger {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 470px) {
	.sep { padding: 0; }
}