* {
    cursor: url(/a/img/ui/cursor-dino.png), auto;
}

audio {
    position: fixed;
    z-index: 100;
    width: 100%;
    bottom: 0;
    right: 0;
}

#tracklist {
    margin: 0;
    padding: 0;
}

#tracklist li {
    list-style: none;
}

#tracklist li::before {
    content: '';
    display: inline-block;
    height: 1em;
    width: 1em;
    background-image: url(/a/img/content/4/5.gif);
    background-size: contain;
    background-repeat: no-repeat;
}

html,
body {
    margin: 15px;
    background: url("/a/img/content/14/bg.png") repeat;
}

#player-view {
    display: flex;
    flex-direction: row;
}

#player-view .part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#canvas-controls button {
    background: none;
    border: none;
}

#canvas-controls button:hover {
    background-color: rgba(255, 255, 255, .8);
}

#viz.fullscreen {
    width: 100vw;
    height: 100vh;
}

canvas:-moz-full-screen {
    width: 100%;
    height: 100%;
}

canvas:-webkit-full-screen {
    width: 100%;
    height: 100%;
}

canvas:-ms-fullscreen {
    width: 100%;
    height: 100%;
}

canvas:fullscreen {
    width: 100%;
    height: 100%;
}