@import 'https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&subset=latin-ext';

body {
    background-color: #F2F2F2;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    justify-content: center;
}

main{
    display: flex;
    flex-flow: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 20px;

    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
    padding-bottom: 50px;
}

.neutral-template div.info-box {
    padding: 0 20px;
    max-width: 496px;
}


.neutral-template main {
    width: auto;
    height: auto;
    min-width: auto;
    text-align: center;
}

.neutral-template h1 {
    font-size: 85px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #07408d;
    margin: 100px 0 20px 0;
    text-align: center;
}


.neutral-template p {
    font-size: 18px;
    line-height: 1.7;
    color: #454d58;
}


.neutral-template img {
	margin-top:20px;
    margin-bottom: 100px;
	width:120px;
	height:120px;
}


/* Fade */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

