@keyframes moveTitleImg {
  from {transform: rotate(-15deg) scale(0.8);}
  to {transform: rotate(5deg) scale(1.2);}
}
body {
    font-family: Verdana, Arial, snas-serif;
}
body > div {
    margin: 50px 100px;
    text-align: center;
    width: 500px;
}
div#titleImage {
    background-size: 100% 100%;
    height: 400px;
    margin-left: 150px;
    width: 400px;
}
div#titleImage.moved {
    animation-name: moveTitleImg;
    animation-direction: alternate;
    animation-duration: 0.4s;
    animation-iteration-count: infinite;
}
div#control button {
    border: none;
    border-radius: 50px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    cursor: pointer;
    height: 80px;
    width: 150px;
}
div#control button:hover, div#control button:focus {
    transform: scale(1.3);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    
}
div#control button#play {
    background: url(../img/media-playback-start-symbolic.svg) 50% 50% no-repeat;
    background-color: #00ff00;
    background-size: 20%;
}
div#control button#pause {
    background: url(../img/media-playback-pause-symbolic.svg) 50% 50% no-repeat;
    background-color: #ffff00;
    background-size: 20%;
}

div#control button#restart {
    background: url(../img/media-seek-backward-symbolic.svg) 50% 50% no-repeat;
    background-color: #ff0000;
    background-size: 20%;
}
div#playlist select {
    height: 60px;
    padding: 10px;
    width: 200px;
}
div#playtime {
    margin-top: 500px;
}
div#info {
    display: none;
}
/*
div#control button#play.active {
    background-color: #009900;
    cursor: initial;
}
*/
/*
div#control button#pause:focus {
    background-color: #999900;
}
*/
/*
div#control button#pause.active {
    background-color: #999900;
    cursor: initial;
}
*/
/*
div#control button#restart:focus {
    background-color: #990000;
}
*/
/*
div#control button#restart.active {
    background-color: #990000;
    cursor: initial;
}
*/