/* Play button and range input (slider) */

.player {
    display: flex;
    align-items: center;
}

.player input[type=range] {
    flex: 1;
}

.player button {
    border: 0;
    box-shadow: 0px 0px 4px black;
    height: 1cm;
    width: 1cm;
    border-radius: 0.5cm;
    background-color: silver;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    margin-right: 0.3cm;
    outline: none;
    background-image: url(image/play.png);
}

.player button:active {
    box-shadow: 0px 0px 1px black;
    position: relative;
    top: 1px;
}

.player button.play {
    background-image: url(image/pause.png);
}


