
.EDGARRUN {
    animation: none; 
    position: absolute;
    top: 480px;
    height: 130px;
    width: auto;
}

.objekt {
    position: absolute;
    cursor: pointer;
    height: 25px;
    width: auto;
}

.brille { top: 950px; left: 140px; } /* definiert Größe der Objekte */
.handschuhe { top: 650px; left: 1340px; }
.meissel { top: 570px; left: 720px; }

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
/*Diese Keyframes geben an, von wo nach wo sich die Objekte bwegen sollen (auf Edgar Tasche)*/
@keyframes moveBrille {
    from { top: 950px; left: 140px; } 
    to { top: 620px; left:1000px; } 
}

@keyframes moveHandschuhe {
    from {top: 650px; left: 1340px;} 
    to { top: 620px; left:1000px; } 
}
@keyframes moveMeissel {
    from { top: 570px; left: 720px; } 
    to { top: 620px; left:1000px; } 
}
