/* CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  #music-player {
    width: 350px;
    height: 600px;
    background-image: url(bg.png);
    color: rgb(251, 255, 0);
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(4, 255, 242);
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  h1 {
    font-size: 40px;
    font-weight: bold;
    margin-top: 10px;
  }
  
  #album-photo {
    position: absolute;
    top: 330px;
    width: 120px;
    height: 120px;
    border-radius: 500px;
    overflow: hidden;
    margin: 10px;
  }
  
  #cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  #track-info {
    width: 80%;
    text-align: center;
  }
  
  #title {
    position: absolute;
    top: 445px;
    left: 110px;
    font-size: 50px;
    font-weight: bold;
  }
  
  #artist {
    position: absolute;
    top: 499px;
    left: 90px;
    font-size: 27px;
    font-style: bold;
  }
  
  #controls {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
   button img {
    position: absolute;
    top: 538px;
    width: 45px;
    height: 45px;
  }
  
  #progress-container {
    width: 80%;
    height: 5px;
    background: #ff000000;
    border-radius: 5px;
    overflow: hidden;
  }
  
  #progress {
    width: 0%;
    height: 100%;
    background: #ff0000;
  }

  #creator{
    position: absolute;
    top: 70px;
    left: 75px;
    font-size: large;
    font-weight: bold;
  }
 