body {
  width: 100%;
  height: 100vh;
  display: flex;
  background-color: #181818;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  user-select: none;
}

.container {
  background-color: rgba(5, 83, 172, 0.514);
  border-radius: 20px;
  width: 300px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: rgb(255, 255, 255);
}

.container h1 {
  position: absolute;
  top: 4px;
  text-align: center;
  font-size: 16px;
  margin: 0;
}

.container .progress_container {
  position: absolute;
  bottom: 14px;
  width: 100%;
  max-width: 150px;
  height: 5px;
  background-color: #ccc;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
}

.container #progress {
  background-color: aqua;
  width: 0;
  height: 100%;
}

.container #current_time {
  position: absolute;
  top: 40%;
  left: 10%;
}

.container #current_audio {
  position: absolute;
  top: 40%;
  right: 10%;
}

.container .buttons button {
  cursor: pointer;
}