.radio-player {
  margin: 20px;

}
.button {
  vertical-align:super;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background-color: purple;
  background-size: contain;
  color: #fff;


}
.play-pause-button {
  width: 140px;
  height: 120px;
  font-size: 50px;
  margin-right: 10px;
}
.mute-button {
  width: 30px;
  height: 30px;
  margin-right: 12px;
  display: none;
}

.player-controls {
  display: flex;
  align-items: center;
}
.currently-playing {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.volume-controls {
  display: flex;
  align-items: center;
  display: none;
}

.currently-playing-label {
    font-size: 12px;
    font-weight: 300;
    display: none;
}
.currently-playing-title {
    font-size: 22px;
    display: none;
}

.volume {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 50px;
  overflow: hidden; /* This will help with styling the thumb */
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;

  height: 15px;
  width: 15px;

  cursor: ew-resize;
  background: #000;
  box-shadow: -400px 0 0 390px #ff0000;
  border-radius: 50%;
}
input[type="range"]::-moz-range-thumb {
  /* same as above */
}
input[type="range"]::-ms-thumb {
  /* same as above */
}
input[type="range"]:focus {
  border-radius: 50px;
  box-shadow: 0 0 15px -4px #FF0000;
}

nav {
  background-color: ;
  color: white;
  text-align: center;
  border-radius: 0px;
  padding: 0;
  justify-content: center;
}
nav ul {
  background: orange;
  align: center;
  justify-content: center;
}
nav li {
  display: inline-block;
  padding: 15px;
  justify-content: center;
}
nav li a{
  font-size: 18px;
  text-decoration: none;
  color: white;
  padding: 0px;
  margin: 0px

}
