body{
    background: black;
    color: white;
}

h1{
    color:deeppink;
    text-align: center;

}

    

p{
    color: white;
}
.img{
    width: 200px;
    height: 200px;
    object-fit: contain;
    overflow-clip-margin: content-box;
    overflow: clip; 
    display: flex;     
    
}
.img{
    border-style: groove;
    border-color: deeppink;

    animation-duration: 3s;
    animation-name: glissement;
    animation-iteration-count: infinite;
  }
  
    
  
  @keyframes glissement {
    from {
      margin-left: 100%;
      width: 300%;
    }
  
    to {
      margin-left: 0%;
      width: 100%;
    }
}
  
.music{
    border-width: 2cm;
    border-color: deeppink;
}
.titres{
    border-width: 2cm;
    border-color: deeppink;
}