

/* ***************** GIF-Animierter Button und dessen Tooltip *****************/
html, body {
    height: 100%;
    overflow: hidden;
}

#GIFAnimationButton {
    position: absolute;
    top: 250px;
    left: 560px;
}

#link {
    cursor: auto;
}

#tooltip {
    position: absolute;
    top: 0px;
    left: -9999px;
    height: 50px;
    padding: 8px 15px;
    border: 1px solid #998;
    font: normal 18px/24px Calibri;
    text-align: left;
    color: #FFE;
    box-shadow: 15px 15px 30px #000;
    background-color: rgba(0,0,20,0.6);
    opacity: 0;
    transition: opacity 0.1s;
    transition-timing-function: ease-out;
}