#container {
    width: 1400px;
    height: 500px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

#caption {
    width: 100%;
    height: 100%;
    font-size: 150pt;
    color: rgba(255, 255, 255, 1.0);
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
    animation: ON 2s;
}

@keyframes ON {
    0% {
        color: rgba(255, 255, 255, 0.0);
        text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.0);
    }
    2% {
        text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.2);
    }
    3% {
        text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.0);
    }
    15% {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.0);
    }
    18% {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.3);
    }
    19% {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.0);
    }
    40% {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.0);
    }
    42% {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.4);
    }
    43% {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.0);
    }
    47% {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.0);
    }
    49% {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.0);
    }
    55% {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.0);
    }
    57% {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.6);
    }
    58% {
        color: rgba(255, 255, 255, 0.0);
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.0);
    }
    70% {
        color: rgba(255, 255, 255, 0.8);
        text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.0);
    }
    85% {
        color: rgba(255, 255, 255, 1.0);
    }
    100% {
        text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
    }
}

#download {
    bottom: 0;
    margin: -50px auto 0 auto;
    border-radius: 7px;
    vertical-align: middle;
    opacity: 1.0;
    filter: blur(0px);
    animation: ONON 1s 1s;
    animation-fill-mode: backwards;
    transition: all 300ms ease-out;
}

#download:hover {
}

@keyframes ONON {
    from {
        opacity: 0.0;
        filter: blur(10px);
    }
    to {
        opacity: 1.0;
        filter: blur(0px);
    }
}

@media (max-width: 1500px) {
    #container {
        width: 900px;
    }

    #caption {
        font-size: 100pt;
    }
}

@media (max-width: 1000px) {
    #container {
        width: 500px;
    }

    #caption {
        font-size: 70pt;
    }
}

#privacy {
    margin-top: 5px;
    display: inline-block;
    color: #888;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0.0);
    transition: all .4s ease-out;
    text-decoration: none;
    font-weight: bolder;
    font-size: 11pt;
    animation: APPEAR 1s 2s;
    animation-fill-mode: backwards;
}

#privacy:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 1.0);
    color: #fff;
}

@keyframes APPEAR {
    from {
        opacity: 0.0;
    }
    to {
        opacity: 1.0;
    }
}
