.main
{
    padding-top: 35px;
    padding-bottom:35px ;
}
.box{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.musique{
    display: flex;
    align-items: center;
    flex-direction: column;
    position:absolute;
}
.centre img{
    width:200px;
    height:200px;
    border-radius: 50%;
}
.circle{
    background-image: url('../img/vinyle.png');
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 20px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    border: 3px solid #f1f1f1;
    animation: 1s linear infinite alternate boxMagic,
               4s linear infinite spinning;

}
.centre{
    display: flex;
    align-items: center;
   position: absolute;
   animation: 4s linear infinite spinning;
}

/*Les couleurs sont positionnés sur les axes X et Y  afin de les faire ressortir : 
-10px sur Y et lautre sur X et pareil pour le positif, l'autre c'eset pour le flou*/

@keyframes boxMagic {
    from{
        box-shadow: 
        0 0 0 #feac5e,
        0 0 0 #c779d0,
        0 0 0 #4bc0c8,
        0 0 0 #42db75;
    }
    to{
        box-shadow: 
        0 -15px 0 #feac5e,
        -15px 0 0 #c779d0,
        0 15px 0 #4bc0c8,
        15px 0 0 #42db75;
    }
}

@keyframes spinning {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.top{
    height: 200px;
    width: auto;
    display: flex;
    align-items: center;
}
.top h5{
    font-size: 35px;
    color:rgb(255, 255, 255);
    text-shadow: 2px 1px 3px rgb(0, 0, 0);
}
.audio{
    height: 300px;
    width: auto;
    display: flex;
    align-items: flex-end;
}
.button
{
    margin-top: 50px;
}
.button a{
    margin: 40px
}
.wrap{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    justify-content: center;
  }
.com
  {
    background-color: rgba(255, 255, 255, 0.748);
    border: 1px solid black;
    width: 300px ;
    height: 100px;
    margin: 20px;
    padding: 10px;
  
  }
.titre{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 25px;
    font-style: italic;
  }
.text{
    text-align: center;
    margin-top: 50px;
  }
.info{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 18px;
}
p{
    font-size: 18px;
    text-align: center;
}
.signal{
    display: flex;
    justify-content: center;
    margin: 30px;
   
}
.signaler{
    padding: 5px;
    background-color: red;
    font-size: 20px;
    color: white;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .musique img{
        width: 120px;
        height: 120px;
    }
    .musique h5{
        font-size: 20px
    }
    .circle{
        padding: 30px;
        width: 320px;
        height: 320px;
    }
    .top{
        height: 0px;
        margin-top: 50px;
    }
    .audio{
        height: 265px;
        width: 250px;
    }
    .audio audio{
        height: 31px;
    }
    .button{
        margin-top: 10px;
    }
    .button a{
        margin: 20px;
    }
   
}
