#background {
    background-color: #7a272f;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    overflow: hidden;
    z-index: -20;
    
}

.alice {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -960px;
    margin-top: -960px;
}


.clock {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -400px;
    margin-top: -400px;
}

.sp_animation_main {
    -webkit-animation: sp_animation 6s linear 0s infinite forwards;
    -moz-animation: sp_animation 6s linear 0s infinite forwards;
    animation: sp_animation 6s linear 0s infinite forwards;
}

.small_animation_main {
    -webkit-animation: clk_animation 8s linear 0s infinite forwards;
    -moz-animation: clk_animation 8s linear 0s infinite forwards;
    animation: clk_animation 8s linear 0s infinite forwards;
}

.big_animation_main {
    -webkit-animation: clk_animation 4s linear 0s infinite forwards;
    -moz-animation: clk_animation 4s linear 0s infinite forwards;
    animation: clk_animation 4s linear 0s infinite forwards;
}

@-webkit-keyframes sp_animation {
    0% {
        -webkit-animation-timing-function: linear;
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-animation-timing-function: linear;
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes sp_animation {
    0% {
        -moz-animation-timing-function: linear;
        -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-animation-timing-function: linear;
        -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        -moz-transform: rotate(360deg);
    }
}

@keyframes sp_animation {
    0% {
        animation-timing-function: linear;
        transform: rotate(0deg);
    }

    100% {
        animation-timing-function: linear;
        transform: rotate(360deg);
    }
}

@-webkit-keyframes clk_animation {
    100% {
        -webkit-animation-timing-function: linear;
        -webkit-transform: rotate(0deg);
    }

    0% {
        -webkit-animation-timing-function: linear;
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes clk_animation {
    100% {
        -moz-animation-timing-function: linear;
        -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        -moz-transform: rotate(0deg);
    }

    0% {
        -moz-animation-timing-function: linear;
        -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        -moz-transform: rotate(360deg);
    }
}

@keyframes clk_animation {
    100% {
        animation-timing-function: linear;
        transform: rotate(0deg);
    }

    0% {
        animation-timing-function: linear;
        transform: rotate(360deg);
    }
}
