html {
    background: #C4CCBB;
    background: -webkit-linear-gradient(top right, #FFE, #898);
    background: -o-linear-gradient(bottom left, #FFE, #898);
    background: -moz-linear-gradient(bottom left, #FFE, #898);
    background: linear-gradient(to bottom left, #FFE, #898);
    background: -webkit-radial-gradient(100% 0%, farthest-corner, #FFE, #898);
    background: -o-radial-gradient( 100% 0%, farthest-corner, #FFE, #898);
    background: -moz-radial-gradient( 100% 0%, farthest-corner, #FFE, #898);
    background: radial-gradient( farthest-corner at 100% 0%, #FFE, #898);
    background-attachment: fixed;
    background-size: 100% 100%;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #444;
}
#centering {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    max-width: 1080px;
    max-height: 720px;
}
#container {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
}
#soonlogo {
    position: absolute;
    align-items: center;
    display: flex;
    top: 0;
    left: 0;
    right: 70%;
    bottom: 50%;
}
#soonlogo>img { width: 100%; }
#soontitle {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    left: 35%;
    right: 0;
    bottom: 50%;
}
#soontitle>div { text-align: center; width: 100%; }
#soondesc {
    position: absolute;
    display: flex;
    align-items: center;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 20%;
}
#soondesc>div { text-align: center; width: 100%; }
#soonlinks {
    position: absolute;
    display: flex;
    align-items: center;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 20%;
}
#soonlinks>div { text-align: center; width: 100%; }
#soonhost { font-size: 0.5em; position: fixed; bottom: 2em; right: 50%; left: 0; text-align: center; }
#soonlogin { font-size: 0.5em; position: fixed; bottom: 2em; right: 0; left: 50%; text-align: center; }

.testdiv { position: absolute; top: 50%; left: 50% }
.testdiv div {
    position: absolute;
    top: 4px; 
    bottom: 4px;
    left: 4px;
    right: 4px;
    margin: 6px;
    margin-top: 0;
    border-top: #FFF solid 6px;
    border-radius: 50%;
    -ms-transform: rotate(0deg); /* IE 9 */
    -webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
    transform: rotate(0deg);
    -webkit-animation-name: spin;
    -webkit-animation-duration: 3000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;

    -moz-animation-name: spin;
    -moz-animation-duration: 3000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;

    -ms-animation-name: spin;
    -ms-animation-duration: 3000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: ease-in-out;

    animation-name: spin;
    animation-duration: 3000ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    }
.testdiv>div { width: 128px; height: 128px; top: -64px; left: -64px; right: auto; bottom: auto; border-color: #F00; margin: 0; }
.testdiv>div>div { border-color: #FF0; }
.testdiv>div>div>div { border-color: #0F0; }
.testdiv>div>div>div>div { border-color: #0FF; }
.testdiv>div>div>div>div>div { border-color: #00F; }
.testdiv>div>div>div>div>div>div { border-color: #F0F; }
 @-ms-keyframes spin { 
        from { 
            -ms-transform: rotate(0deg); 
        } to { 
            -ms-transform: rotate(360deg); 
        }
    }
    @-moz-keyframes spin { 
        from { 
            -moz-transform: rotate(0deg); 
        } to { 
            -moz-transform: rotate(360deg); 
        }
    }
    @-webkit-keyframes spin { 
        from { 
            -webkit-transform: rotate(0deg); 
        } to { 
            -webkit-transform: rotate(360deg); 
        }
    }
    @keyframes spin { 
        from { 
            transform: rotate(0deg); 
        } to { 
            transform: rotate(360deg); 
        }
    }


@media (min-width: 640px) {
    html { font-size: 22px; }
}
@media (min-width: 800px) {
    html { font-size: 26px; }
}
@media (min-width: 1024px) {
    html { font-size: 30px; }
}
@media (min-width: 1280px) {
    html { font-size: 34px; }
}