body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color:#e8e9ee;
}

.outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.inner {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
    width: 1054px;
    text-align: center;
}

.animation{
    margin-top: 50px;
    display:inline-block;
    margin-bottom: 10px;
}

h1{
    font-size: 32px;
    font-weight: 700;
    margin: 10px;
    color: black;
    line-height: 42px;
}

p{
    font-size: 16px;
    font-weight: 400;
    padding: 18px 37px 0px;
    margin: 0;
    color: #616161;
    line-height: 26px;
}

a{
    color: #3473b9;
    font-weight: bold;
    text-decoration: none;
}

.one, .two, .three {
    display:block;
    float:left;
}

.one {
    background-image: url("spin-one.svg");
    width: 60px;
    height: 60px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: -10px;
    margin-right: 8px;
}

.two {
    background-image: url("spin-two.svg");
    width: 80px;
    height: 80px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.three {
    background-image: url("spin-three.svg");
    width: 60px;
    height: 60px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: -50px;
    margin-left: -10px;
}

@keyframes spin-one {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-359deg) ;
        transform: rotate(-359deg) ;
    }
}

.spin-one {
    -webkit-animation: spin-one 3s infinite linear;
    animation: spin-one 3s infinite linear;
}

@keyframes spin-two {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-359deg);
        transform: rotate(359deg);
    }
}

.spin-two {
    -webkit-animation: spin-two 3s infinite linear;
    animation: spin-two 3s infinite linear;
}

@keyframes spin-three {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-359deg);
        transform: rotate(359deg);
    }
}

.spin-three {
    -webkit-animation: spin-two 3s infinite linear;
    animation: spin-two 3s infinite linear;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 15px 0 15px;
    padding: 0;
}

img {
    display: block;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    color: #616161;
    text-align: center;
}

.footer p{
    font-size: 12px;
    font-weight: 400;
    color: #616161;
    line-height: 18px;
    padding: 20px 37px 10px;
}