body {
    font-family: sans-serif;
    font-variant: small-caps;
    background-color: black;
    color: rgb(235, 235, 235);
/*    text-align: center;*/
}

.container
{
/*    width: 36%;*/
/*    display: flex; */
    justify-content: center;
    position: absolute;
    text-align: center;
    border: 1px solid rgb(235, 235, 235);
    border-radius: 15px;
}

@media only screen and (min-device-width: 1024px) {
    .container {
        min-width: 36%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-device-width: 1024px) {
    .container {
        width: 96%%;
    }
}

nav {
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0.5em;
    padding: 1em;
    width: 90%;
}

nav a {
    text-decoration: none;
    margin: 0 auto;
}

nav button {
    background-color: rgb(192, 192, 192);
    margin: 0.5em;
    font-size: large;
    padding: 6px 9px;
    border-radius: 5px;
    height: auto;
}

img {
    height: inherit;
    position: relative;
    z-index: 0;
}

nav .active button
{
/*    border-radius: 5px;*/
    background-color: rgb(150, 225, 225);
}

.player
{
    display: inline-block;
    border: 1px solid black;
    background: rgb(235, 235, 235);
    margin: 0.5em;
    padding: 1em;
    border-radius: 10px;
    height: auto;
    width: 77%;
    color: black;
}

.player * {
    display: inline-block;
    vertical-align: middle;
}
.player audio {
    display: none;
}

.player .playbtn
{
    border: none;
    background-color: transparent;
    height: 25px;
}

#curtime1
{
    width: 47%;
}

.playtime
{
    font-size: medium;
    padding: 2px 4px 0 4px;
}

.volparams {
    height: inherit;
    padding: 2px 0 0 0;
}

.speaker {
    height: 25px;
}

.volsign {
  width: 12px;
  height: 12px;
}

.volume {
  width: 30%;
}

.player input[type="range"]
{
    -webkit-appearance: none;
    height: 1px;
    border-radius: 1px;
    background: black;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.player input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: black;
  cursor: pointer;
}

.player input[type="range"]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: black;
  cursor: pointer;
}

.renderer
{
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  margin: 0.5em;
  padding: 1em;
}

.renderer button
{
  background-color: rgb(192, 192, 192);
  border-radius: 5px;
  max-width: 157px;
  min-width: 157px;
  margin: 0.5em auto;
  padding: 1.1em;
  z-index: 1;
  font-size: large;
  font-weight: bold;
}

.renderer .active
{
    background-color: rgb(150, 225, 225);
    z-index: 1;
}