.header {
    overscroll-behavior: auto;
}

.album-art-container {
    position: absolute;
    display: flex;
    justify-content: right;
    align-items: center;
    height: auto;
    width: 98vw;
    padding-right: 1vw;
    margin-left: auto;
    padding-top: 1lh;
    z-index: -1;
}

.album-art-container img {
    width: 40%;
    object-fit: cover;
}

  .track-list div {
    cursor: pointer;
    padding: 0;
  }

.track-list div:hover {
    opacity: 0.2;
  }

.track-list div.active {
  opacity: 0.2;
}

.player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0vw 2vw 0vw 2vw;
    box-sizing: border-box;
    height: 5vw;
}

.track-info {
    display: flex;
    align-items: center;
    width: 10vw;
    font-size: 2vw;
  }

.controls {
    display: flex;
  }

.controls button {
    background: none;
    border: none;
    color: white;
    font-size: 2vw;
    margin: 0vw;
    cursor: pointer;
}

.controls button:hover {
    opacity: 0.2;
  }

#playPause {
  width: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4vw;      /* keep same size */
  border: none;
  color: white;
  cursor: pointer;
}

#skip {
    margin-right: 1vw;
}

  .progress {
    width: 70vw;
  }

@media screen and (max-width: 800px) {
	.album-art-container {
    position: relative;
    justify-content: left;
    align-items: center;
    height: auto;
    width: 98vw;
    
}

.album-art-container img {
    width: 60vw;
}
    .player {
        height: 10vw;
        padding: 0vw 2.5vw 0vw 2.5vw;
    }
    .track-info {
    width: 10vw;
    font-size: 5vw;
    }
    
    .controls button {
    font-size: 5vw;
    }

    #playPause {
    width: 7vw;
    font-size: 6vw;
}

#skip {
    margin-right: 4vw;
}

  .progress {
    width: 40vw;
  }
}