html {
}

body {
    background-color: #0079AB;
    color: white;
    margin: 0 auto;
    font-family: 'Amazon Ember', Helvetica, sans-serif;
    font-weight: 100;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

main > * {
    margin: 25px;
    display: block;
}

main {
    max-width: 715px;
}

footer {
    position: absolute;
    bottom: 70px;

    line-height: 36px;
    max-width: 600px;
}

.amazon_logo {
    height: 70px;
}

.spinner {
    height: 80px;
    padding: 35px;
}

.stores a {
    text-decoration: none;
}

.store_logo {
    height: 70px;
    padding: 10px;
}

.message {
    font-size: 32px;
    line-height: 42px;
}

@media (max-device-width: 667px) {

    main {
        position: relative;
        top: -50px;
    }

    main > * {
        margin: 15px;
    }

    .amazon_logo {
        height: 40px;
    }

    .spinner {
        height: 60px;
    }

    .message {
        font-size: 16px;
        line-height: 30px;
    }

    .store_logo {
        height: 40px;
        padding: 2px;
    }

    footer {
        font-size: 12px;
        line-height: 18px;
        bottom: 10px;
        padding: 25px;
    }
}

.spinner {
    -webkit-animation: rotation .7s infinite linear;
    -moz-animation: rotation .7s infinite linear;
    -o-animation: rotation .7s infinite linear;
    animation: rotation .7s infinite linear;
    transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);}
    to   {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
    from {-o-transform: rotate(0deg);}
    to   {-o-transform: rotate(359deg);}
}
@keyframes rotation {
    from {transform: rotate(0deg);}
    to   {transform: rotate(359deg);}
}

