.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
body,
  html {
    height: 100%;
    background: black;
}

.video-container {
    width: 100%;
    padding: 20px;
}

.video-container video {
    width: 100%;
}

div.control-container {
    margin-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
}
div.control-container div.amplitude-play-pause {
    width: 74px;
    height: 74px;
    cursor: pointer;
}
div.control-container div.amplitude-play-pause.amplitude-paused {
    background: url("/static/pages/music-player/play.svg");
    background-size: cover;
}
div.control-container div.amplitude-play-pause.amplitude-playing {
    background: url("/static/pages/music-player/pause.svg");
    background-size: cover;
}

div.time-container {
    font-size: 16px;
    color: #3e4957;
    height: 15px;
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}
div.time-container span.current-time {
    margin-left: 5px;
}
div.time-container span.duration {
    margin-right: 5px;
}
  
progress.amplitude-song-played-progress {
    background-color: rgb(183, 183, 183);
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    display: block;
    cursor: pointer;
    border: none;
}
progress.amplitude-song-played-progress:not([value]) {
    background-color: rgb(183, 183, 183);
}
  
progress[value]::-webkit-progress-bar {
    background-color: rgb(183, 183, 183);
}
  
progress[value]::-moz-progress-bar {
    background-color: #00a0ff;
}
  
progress[value]::-webkit-progress-value {
    background-color: #00a0ff;
}
  
div.bottom-container {
    background-color: #dfdfdf;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
  
div#single-song-player {
    border-radius: 10px;
    margin: auto;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 460px;
    -webkit-font-smoothing: antialiased;
}

.btn-container {
    display: flex;
    justify-content: center;
}

.change-player {
    color: white;
    margin-top: 30px;
    background: #9B27AF;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Arial";
}