/*c pour la page musique*/

h1 {
    color: black;
    text-align: center;
    padding: 50px;
    background-image: url("musique/phot.jpg");
}
h2 {
    color: blue;
}
a{
    color: rgb(235, 73, 235);
}
p {
    color: rgb(255, 255, 255);
    font-family: Arial
}
.telechatger_p {
    color: black;
}
nav{
    text-align: center;
    background-color: rgb(255, 247, 2);
}
body {
    background-color: aqua;
}

.music-player {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .play-pause-button {
    position: relative;
    width: 100px;
    height: 100px;
    cursor: pointer;
  }
  
  .play-icon,
  .pause-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  
  .pause-icon {
    opacity: 0;
  }
  
  .progress-bar {
    width: 200px;
    height: 10px;
    background-color: #ccc;
  }
  
  .progress {
    width: 0;
    height: 100%;
    background-color: #ff0000;
    transition: width 0.3s ease;
  }
  