#example-element {
    background-color: #1766aa;
    color: white;
    margin: auto;
    margin-left: 0;
    border: 5px solid #333;
    width: 150px;
    height: 150px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#playstatus {
    font-weight: bold;
}

.animating {
    animation: slide 1s ease-in 1;
}

@-webkit-keyframes slide {
    from {
        background-color: orange;
        color: black;
        margin-left: 0;
    }
    to {
        background-color: orange;
        color: black;
        margin-left: 80%;
    }
}

@keyframes slide {
    from {
        background-color: orange;
        color: black;
        margin-left: 0;
    }
    to {
        background-color: orange;
        color: black;
        margin-left: 80%;
    }
}
