@font-face {/*police spotify*/
    font-family: "Circular";
    src: url(./Circular/CircularStd-Medium.otf);
}

* {/*tout les elements*/
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {/*disposition des elements*/
    height: 100vh;
    width: 100vw;
    background-color: #000000;/*couleur non determiner car c'est les deux interfaces qui les onts*/
    font-family: "Circular";

    overflow: hidden;
}




.quiContientLeLecteur {
    height: 100%;
    width: 100%;

    /* display: none; */
}

.quiOrganiseLeLecteur {
    height: 100%;
    width: 100%;
    background-color: #121212;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {/*titre de la playlist*/
    margin-top: 30px;
    color: white;
    font-size: 2.5rem;
}

.pochette {/*photo de l'album*/
    margin-top: 20px;
    height: 570px;
    width: 570px;
    background-color: #000;
    background-image: url("en attente");
    background-size: cover;
    box-shadow: 0 0 20px 6px black;

    border-radius: 10px;
}

.infoEnDessous {/*regroupe tout ce qui est place en dessous de l'mage*/
    margin-top: 10px;
    height: 10px;
    width: 570px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.infoSurLeTitre {/*auteur et titre de la musique*/
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.titreDuSon {/*titre*/
    color: #e5e5e5;
    font-size: 3rem;
}

.chanteur {/*ghanteur*/
    font-size: 2rem;
    color: #b2b2b2;
}



.parcourEtTemp {/*barre de temp et temps en minutes et seondes*/
    margin-top: 7px;
    height: 40px;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quiContientLaBarre {/*bloc qui contient la barre pour quelle reste centrer quand elle grossse*/
    height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.barreDeSon {/*barre de progression temporelle contenant le temp parcourue*/
    height: 6px;
    width: 570px;
    background-color: #5e5e5e;
    border-radius: 4px;
    transition: .3s;
}
.barreDeSon:hover {/*effet au dessus de la barre pur quelle grossisse*/
    height: 16px;
    border-radius: 9px;
    cursor: pointer;
}

.sonPasse {/*son parcouru qui est dans la barre de progression*/
    height: 100%;
    width: 0;
    max-width: 570px;
    background-color: #ffffff;
    border-radius: 9px;
    transition: 3.5s;
}

.temp {/*qui contient le temp parcouru et restant afficher en secondes et minutres*/
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.tempParcoure {/*temp restant en chiffres*/
    color: #a7a7a7;
}

.tempRestant {/*temp restant en chiffres*/
    color: #a7a7a7;
}



.playEtAutresTitres {/*toutes les infos en dessous du temp et de la barre dde progression*/
    margin-top: 35px;
    height: 10px;
    width: 95%;

    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 3rem;
}

.volume {/*icne du volume*/
    position: absolute;
    margin-right: 550px;
    height: 35px;
    width: 39px;/*width doit etre proporttionnelle (363 par 326 longueure plus grande)*/
    background-image: url(differentVolume/volumeBas.png);
    background-size: cover;
    transition: .1s;

    display: flex;
    justify-content: center;
    align-items: center;
}
.volume:hover {/*effet de grossisement quand on survole l'icone*/
    cursor: pointer;
    height: 42px;
    width: 47px;
}

.barreDeVolume {/*onglet de volume qui contient d'autre element (il s'afficha quand on reste ubne seconde sur l'icone)*/
    position: absolute;
    margin-bottom: 70px;
    margin-right: 550px;
    height: 60px;
    width: 220px;
    background-color: #181818;
    border: solid 1px rgb(161, 161, 161);
    border-radius: 15px;
    display: none;
}

.tricheVolume {/*c'est un composant qui prend toute la place  dans l'onglet car l'onglet et parfois en display none et donc il ne peux pas etre ausi en display flex*/
    height: 100%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.volumeEntier {/*barre de volume qui affiche tout le volume*/
    position: relative;
    height: 10px;
    width: 184px;
    background-color: #5e5e5e;
    border-radius: 8px;
}
.volumeEntier:hover {/*met le cursor en pointer quand on passe au dessus*/
    cursor: pointer;
}

.volumeChoisi {/*barre de volume qui affiche la part de volume qui est active et qui devint vert*/
    height: 100%;
    width: 20%;
    max-width: 184px;
    background-color: #fff;
    border-radius: 8px;
    transition: .15s;
}


.retourner {/*case qui contient le bouton retourner reelement cliquable*/
    width: 33%;
    color: #fff;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.flecheArriere {/*icone de fleche arriere*/
    background-image: url(./flecheGauche.png);
    height: 40px;
    width: 40px;
    background-size: cover;
}
.flecheArriere:hover {/*effet de grosiisement de la fleche arriere*/
    cursor: pointer;
    height: 44px;
    width: 44px;
    transition: .1s
}



.playPause {/*case qui contient le rond qui contient lui meme le span play/pause*/
    width: 33%;
    color: #121212;
    line-height: 85px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.rondAutourPlay {/*rond qui contient le span play/pause*/
    height: 82px;
    width: 82px;
    border-radius: 42px;
    background-color: #fff;
    box-shadow: 0 0 0 0 white;
    
    display: flex;
    justify-content: center;
    /* align-items: center; */
}
.flechePlay:hover {/*span contenant la fleche play/pause*/
    cursor: pointer;
    font-size: 3.3rem;
    transition: .1s;
}



.flecheAvant {/*icone de fleche avant*/
    background-image: url(./flecheGauche.png);
    background-size: cover;
    transform: rotate(0.5turn);
    height: 40px;
    width: 40px;
    transition: .1s
}
.flecheAvant:hover {/*effet de grosiisement de la fleche avant*/
    cursor: pointer;
    height: 44px;
    width: 44px;
    transition: .1s
}



.avancer {/*case qui contient le bouton avancer reelement cliquable*/
    width: 33%;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
}



.alea {/*icone aleatoire donc avec l'image en vert ou blanc*/
    height: 37px;
    width: 42px;
    position: absolute;
    margin-right: -550px;

    background-image: url(./aleatoireN.png);
    background-size: cover;
}
.alea:hover {/*grossisement de l'icone aleatoire quand on siurvole*/
    cursor: pointer;
    height: 45px;
    width: 51px;
    transition: .1s;
}





.cachePourDebut {/*rideau noir qui disparait*/
    position:   absolute;
    height: 100vh;
    width: 100vw;
    z-index: 2;
    background-color: #000000;

    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1.9s;
}

.boutonDeDepart {
    height: 250px;
    width: 464px;
    background-color: #1ccc5b;
    border-radius: 125px;

    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
}
.boutonDeDepart:hover {/*montre que le bouton "lancer" est cliquable*/
    cursor: pointer;
}

.lancer {/*span en lui meme*/
    font-size: 8rem;
    transition: 1s;
}