body {
    background-color: black;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    /* gap: 50px; */
}

#player {
    height: 70px;
    min-height: 70px;
}

#footer img {
    max-width: 80px;
}

#cover img {
    max-width: 300px;
}

#title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#title .title-logo {
    max-width: 200px;
}

#title .status-img {
    max-width: 100px;
}
.status {
    height: 30px;
    min-height: 30px;
}
#statusOnline, #statusOffline {
    display: none;
}

.btn {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#playBtn {
    background-image: url('img/play.png');
    width: 69px;
    height: 70px;
}

#pauseBtn {
    background-image: url('img/pause.png');
    width: 69px;
    height: 70px;
    display: none;
}

.controlsInner {
    position: relative;
    height: 70px;
    min-height: 70px;
}

#loading {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -35px;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 100%;  
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
    display: none;
  }

  @-webkit-keyframes sk-scaleout {
    0% { -webkit-transform: scale(0) }
    100% {
      -webkit-transform: scale(1.0);
      opacity: 0;
    }
  }
  @keyframes sk-scaleout {
    0% { 
      -webkit-transform: scale(0);
      transform: scale(0);
    } 100% {
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
      opacity: 0;
    }
  }