body{
  background: url('ex2.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
    margin-right: 3rem;
  }

  #logotxt{
    margin: 0.2rem;
    font-weight: 500;
    font-size: 1.3rem;
    color: magenta;
  }

  .container{
    min-height: 73vh;
    background-color: black;
    color: white;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    margin-left: 2rem auto;
    width: 90%;
    margin: 1.5rem auto;
    border-radius: 1rem;
    background-image: url('background6.png');
    background-repeat: no-repeat;
    background-size: auto;
  }

  .bottom{
    
    height: 6rem;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .icons{
    display: flex;
    flex-direction: row;
    margin-top: 0.7rem;
    cursor: pointer;
  }

  #play{
    margin-left: 0.5rem;
    margin-right: 0.5rem;

  }
  
  #myProgressBar{
    width: 80vw;
    cursor: pointer;
  }

.songItem{
  height: 3rem;
  display: flex;
  background-color: grey;
  
  margin: 1rem 0;
  justify-content: space-between;
  align-items: center;
  border-radius: 3rem;
}

.songItem img{
  width: 2.8rem;
  margin: 0 2rem;
  border-radius: 2.5rem;
}

.timeStamp{
  margin: 0 1.2rem;
}

.timeStamp i{
  cursor: pointer;
}

.smallBottom{
  display: block;
}
.songInfo{
  position: absolute;
  left: 10vw;
}

#masterPlay{
  margin: 0 0.5rem;
}
.songInfo img{
  opacity: 0;
  transition: opacity 0.5s ease-in;
  width: 2.5rem;
}

@media only screen and (max-width: 320px) {
  h1{
    font-size: 1.2rem;
  }
  .songName{
    font-size: 0.55rem;
  }

  .songItem img{
    width: 2.2rem;
  }
}

