* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  body {
    height: 100vh;
    background: linear-gradient(to bottom, #004985 35%, #000000 45%);
  }
  .music-player {
    font-size: 16px;
    width: 80vw;
    max-width: 25em;
    /* background: linear-gradient(to bottom, #000000 40%, #004985 50%); */
    border: 5px solid;
    border-color: #000000;  
    background-color: #ffffff;
    padding: 3em 1.8em;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 75%;
    border-radius: 0.5em;
    box-shadow: 0.6em 1.2em 3em rgba(0, 0, 0, 0.25);
  }

  .small-head{
    display: none;
  }

  .small-foot{
    display: none;
  }

  
  img {
    width: 100%;
    margin: 1em 0;
  }
  #playlist {
    float: right;
  }
  .song-details {
    font-family: "Poppins", sans-serif;
    text-align: center;
  }
  .song-details #song-name {
    font-size: 1.3em;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  .song-details #song-artist {
    font-size: 0.8em;
  }
  .player-options {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 1.25em;
    margin: 1.25em 0 0.6em 0;
  }
  .music-player button {
    border: none;
    background-color: transparent;
  }
  #play,
  #pause {
    height: 2.5em;
    width: 2.5em;
    font-size: 1.8em;
    background-color: #00172f;
    color: #ffffff;
    border-radius: 50%;
  }
  #prev,
  #next {
    color: #16191e;
    font-size: 1.4em;
  }
  #shuffle,
  #repeat {
    color: #949494;
    font-size: 1em;
  }
  .hide {
    display: none;
  }
  #progress-bar {
    position: relative;
    width: 100%;
    height: 0.3em;
    background-color: #eeeeee;
    margin: 1em 0;
    border-radius: 0.18em;
    cursor: pointer;
  }
  #current-progress {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    height: 100%;
    width: 20%;
    background-color: #2887e3;
    border-radius: 0.18em;
  }
  .time-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Roboto Mono", monospace;
  }
  #playlist-container {
    background-color: #ffffff;
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 0.6em;
    padding: 2em 1em;
    font-family: "Poppins", sans-serif;
    overflow: auto;
    scrollbar-color: #12787b #ffffff;
  }

  #playlist-container::-webkit-scrollbar {
        width: 10px;
      }
      
      #playlist-container::-webkit-scrollbar-track {
        background-color: #ffffff;
        border-radius: 100px;
      }
      
      #playlist-container::-webkit-scrollbar-thumb {
        background-color: #12787b;
        border-radius: 100px;
      }
  

  #fa-angle-down{
    filter: brightness(0) invert(1);
  }

  #close-button {
    background-color: transparent;
    border: none;
    height: 2em;
    width: 2em;
    cursor: pointer;
    margin-left: 90%;
  }
  ul {
    list-style-type: none;
  }
  li {
    display: flex;
    align-items: center;
    margin: 1em 0;
    cursor: pointer;
  }


  .playlist-song-details {
    margin-left: 1em;
  }
  .playlist-song-details > span {
    display: block;
  }
  #playlist-song-artist-album {
    color: #949494;
    font-size: 0.8em;
  }
  button.active i {
    color: #00172f;
  }

.all-container{
    display: flex;
    justify-content: space-between;
}

.intro-div{
    color: rgb(232, 232, 232);
    font-family: 'Karla', sans-serif;
    font-size: 4rem;
    text-align: center;
    position: absolute;
    top:22%;
    left:5%;
    width:45%
}

.intro-div>p{
    font-family: 'Karla', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    margin-top: 2rem;
    color: #979797;
}

@media (max-width:768px){
    body{
        background: linear-gradient(to bottom, #004985 35%, #000000 45%);
    }

    .intro-div{
        display: none;
    }
    .music-player{
        top:50%;
        left:50%;
    }

    .small-head{
        display: block;
        color: rgb(0, 0, 0);
        font-family: 'Karla', sans-serif;
        font-size: 1.85rem;
        text-align: center;
      }

}


  
