html, body {
  background-color: #000;
  color: #fff;
  font: 11pt Tahoma;
  line-height: 1.5em;
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
}

a { color: #bbf; }

#player {
  width: 450px;
  display: flex;
  flex-flow: column;
  gap: 2px;
}
#player-head {
  display: flex;
  gap: 30px;
  padding-bottom: 25px;
}
#player-head-main {
  flex: 1;
}
#player-middle {
  display: flex;
  flex-flow: column;
  gap: 2px;
}
#player-middle > div {
  padding: 8px 25px;
  background-color: #223;
}
#player-middle div span {
  display: inline-block;
  color: #edd;
  width: 6em;
}
#player-middle div div {
  color: white;
  display: inline;
}
#player-bottom {
  flex: 1;
  background-color: #223;
  padding: 15px;
}
#player-bottom div {
  height: 200px;
  max-height: 200px;
  overflow: scroll;
  display: flex;
  justify-content: center;
  background-color: #000;
}

#playstop {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  min-width: 75px;
  min-height: 75px;
  border-radius: 50%;
  background-color: #334;
}
#playstop:active, #playstop:hover {
  background-color: #446;
}
#playstop-sign {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid white;
  margin-left: 5px;
  background-color: transparent;
}
#playstop.playing #playstop-sign {
  width: 22px;
  height: 22px;
  border: none;
  margin-left: 0;
  background-color: white;
}
#title-scroll {
  overflow: hidden;
}
#title {
  font-size: 22pt;
  line-height: 1.2em;
  font-weight: bold;
  margin-bottom: 15px;
  white-space: nowrap;
  /* animation: scroll 10s ease-in-out infinite;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  50% { transform: translateX(-100%); }
  100% { transform: translateX(0); } */
}

#vol-pls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#volume {
  width: 175px;
  height: 20px;
  cursor: pointer;
}

#comment {
  margin: 0;
  width: max-content;
  font-size: 10pt;
  line-height: 1em;
  padding: 10px 0;
}
