﻿#screensaver {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999999;
    margin-top: 0px;
    top: 0px;
    margin-left: 0px;
    left: 0px;
    background-color: #000000;
    display: none;
    color: #fff;
}

#page-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#page-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 300px;
    width: 150px;
    margin-top: -200px;
    margin-left: -75px;
}

#screensaver_logo
{
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
}

/* ANIMATION */
#screensaver_img1 {
    -webkit-animation: screensaver_img1 3s infinite;
    animation: screensaver_img1 3s infinite;
}

@-webkit-keyframes screensaver_img1 {
    50% {
        opacity: 1;
        -webkit-animation-timing-function: ease-in;
    }

    100% {
        opacity: 0;
        -webkit-animation-timing-function: ease-out;
    }
}

@keyframes screensaver_img1 {
    50% {
        opacity: 1;
        -webkit-animation-timing-function: ease-in;

    }

    100% {
        opacity: 0;
        -webkit-animation-timing-function: ease-out;

    }
}

