*,
*::after,
*::before {
    box-sizing: border-box;
}

audio {
    display: none
}

.pause {
    display: none;
}


body {
    background-color: #3F1011;
    color: #fbf5f5;
}


/* Par défaut, cacher les éléments avec la classe .hidden */
.hidden {
    display: none;
}

/* Classe pour afficher les éléments */
.visible {
    display: flex;
}




/* ////////////////////////////////////////////// cliquable //////////////////////////////////////////////////*/

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 800px;

}


a, .credits{
    text-decoration: none;
    color: #8D8C8C ;
}

a:hover, .credits:hover{
    color: #fbf5f5;
}

.credits, .credits:hover{
    background-color: #3F1011;

}


/* //////////////////////////////////////////////           //////////////////////////////////////////////////*/

h1 {
    font-family: "Playfair Display", serif;
    padding-left: 20px;
    font-size: 4rem;
    margin: 0%;


}

.liste-musiques, div{
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color:#340F0F ;
}


.liste-musiques section {

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
}



/* //////////////// c'est par là pour modifier les images du telephones et la positions du texte  ///////////*/


.element {

    text-align: center;
    padding: 0px;
    width: 150px;
    margin-left: 80px;
    margin-top: 220px;

}

.musiqueDescription {
    max-width: 800px;
    text-align: left;



}

/*//////////////////////////////////////// Les Boutons ///////////////////////////////////////////////////////*/


button {
    background-color: #ffffff;
    border-style: none;
    color: #3F1011;
    padding: 5px;
}

button:hover {
    background-color: #8D8C8C;
    
}


/*//////////////////////////////////////// Formulaire ////////////////////////////////////////////////////////*/

form {
    width: 400px;
    margin: auto;
    background-color: #340F0F;
    padding: 6px;
}


fieldset {
    border-style: none;}
   

legend {
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
}



/*////////////////////////////////////////            ////////////////////////////////////////////////////////*/



h2 {
    font-family: "Playfair Display", serif;
    margin: 40px;
    font-size: 2rem;
}





h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
}

ul {
    list-style: none;
}





/*////////////////////////////////////////// Tailles /////////////////////////////////////////////////////////*/


@media (width >=700px) {

    .liste-musiques {
        flex-direction: row;
        flex-wrap: wrap;
        min-height: auto;
    }

    details {
        max-width: 900px;
        margin: 20px auto;
    }

    .liste-musiques section {
        width: 100%;
    }

    header {
        flex-direction: row;
        align-items: center;
    }

    header img {
        max-width: 500px;
        ;
    }

}

@media (width >=1200px) {

    .liste-musiques section {
        align-items: left;

    }

    header {
        margin: 80px 0;
        height: fit-content;
    }

    h1 {
        font-size: 7rem;
    }

    header img {
        max-width: 700px;
    }
}