/*Esconde a dive de classe Player caso seja identificado que o width Mobile maximo deseja igual ou menor que 980px*/
@media only screen and (max-width: 720px){
    .player { display: none; }
    .player button { display: none; }
    .content { display: none; }
    .fa-music { display: none; }
}

.player,
.instructions {
  display: flex;
  position: fixed;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  font-family: "Denk One", Arial, sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.2em;
  color: #fff;
  text-shadow: #000 1px 0 5px;

  
}
.player > .fa,
.instructions > .fa {
  font-size: 320%;
  color: inherit;
}
.player > .content,
.instructions > .content {
  margin-left: 1em;
}

.player {
  left: 1em;
  bottom: 1em;
}
.player button {
  display: inline-block;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: #000 1px 0 5px;;
  font: inherit;
  font-size: 80%;
  line-height: 1.2em;
  color: inherit;
  margin: 2px 0;
  padding: 2px 6px;
  border-radius: 4px;
  cursor: pointer;
  text-shadow: #000 1px 0 5px;
}
.player button:hover {
  border-color: rgba(37, 35, 35, 0.6);
}

.instructions {
  right: 1em;
  bottom: 1em;
}