.title {
    color: blue;
    margin-bottom: 0;
}

.subtitle {
    margin-top: 0;
}

.sidenavigation {
    height: 100%;
    width: 160px;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: aliceblue;
    overflow: auto;
    overflow-x: hidden;
    padding-top: 20px;
}

.sidenavigation a {
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    font-size:larger;
    color: blue;
    display: flexbox;
}

.sidenavigation a:hover {
    color: aqua;
    text-decoration: underline;
    text-decoration-style: wavy;
}

@media screen and (max-width: 768px) {
  .sidenavigation {
    width: 100%;
    height: auto;
    position: relative;
  }
  .dummydivcontent {
    display:none;
    }
  .pagecontentwrapper {
      width:100vw;
        height: auto;
  margin: 0 auto;
  }  
  .pagecontent {
  height: auto;
  margin: 0 auto;
  padding-bottom: 20px;
  background-color: #00aaee;
  background: rgba(0, 170, 238, 0.5);
  }
}

.navsubheader {
  margin-top: 10px;
  margin-left: 10px;
  font-family: "Lucida Console", monospace;
  }

.navlinks {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Courier New", monospace;
  margin-bottom: 10px;
  }
  
  .flexcontainercontent {
  display: flex;
  flex-direction: row;
  }
  
  .dummydivcontent {
    height: 100%;
    width: 10.417vw;
    top: 0;
    left: 0;
    padding-top: 20px;
      }
  
.pagecontentwrapper {
      width:89.583vw;
  }  
    
.pagecontent {
  width: 70vw;
  height: auto;
  margin: 0 auto;
  padding-bottom: 20px;
  background-color: #00aaee;
  background: rgba(0, 170, 238, 0.5);
  
  }
  
.fanmixheader {
    margin-top: 30px;
    margin-bottom: 30px;
    font-family: "Lucida Console", monospace;
    font-weight: bold;
    background-color: white;
    border-style: none none none solid;
    }
    
.mixtapeheader {
    margin-top: 30px;
    margin-bottom: 30px;
    font-family: "Lucida Console", monospace;
    font-weight: bold;
    background-color: white;
    border-style: none none none solid;
    }
    
.fanmixcover {
    max-height:300px;
    max-width:300px;
    height:auto;
    width:auto;
  }

.flexcontainerplayer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 20px;
  }
  
  .fanmixtitle {
    margin-top: 10px;
    font-family: "Lucida Console", monospace;
    text-decoration: overline underline double;
    font-weight: bold;
    text-align: center;
    background-color: white;
    }
    
  .fanmixdesc {
    font-family: "Courier New", monospace;
    font-style: italic;
    text-align: center;
    background-color: white;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
.player {
  height: 95vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.details {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 25px;
}

.track-art {
  margin: 25px;
  height: 275px;
  width: 275px;
  background-image: url("https://images.pexels.com/photos/262034/pexels-photo-262034.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260");
  background-size: cover;
}

.now-playing {
  font-size: 1rem;
}

.track-name {
  font-size: 2rem;
}

.track-artist {
  font-size: 1.15rem;
}

.buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.playpause-track, .prev-track, .next-track {
  padding: 25px;
  opacity: 0.8;

  /* Smoothly transition the opacity */
  transition: opacity .2s;
}

.playpause-track:hover, .prev-track:hover, .next-track:hover {
  opacity: 1.0;
}

.slider_container {
  width: 75%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Modify the appearance of the slider */
.seek_slider, .volume_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 5px;
  background: black;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

/* Modify the appearance of the slider thumb */
.seek_slider::-webkit-slider-thumb, .volume_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  cursor: pointer;
  border-radius: 50%;
}

.seek_slider:hover, .volume_slider:hover {
  opacity: 1.0;
}

.seek_slider {
  width: 60%;
}

.volume_slider {
  width: 30%;
}

.current-time, .total-duration {
  padding: 10px;
      font-family: "Courier New", monospace;
      font-weight: bold;
    text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;

}

i.fa-volume-down, i.fa-volume-up {
  padding: 10px;
}

i.fa-play-circle, i.fa-pause-circle, i.fa-step-forward, i.fa-step-backward {
  cursor: pointer;
}

#footer {
  margin-top: 10px;
    text-align: right;
  font-size: 12px;
}