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

body{
    /* j'insère mon image d'arrière plan  */
    background-image: linear-gradient(180deg, rgba(255,255,255,0.1) 30%, #FFD7F6 100%),url(img/image-de-fond.webp);

    /* L'image de fond couvre toute la zone, ne se répète pas et se redimensionne proportionnellement */
    background-size: cover;

    /* L'image est toujours centré sur les deux axes */
    background-position: center;

    /* L'image est fixe */
    background-attachment: fixed;

    margin : 0;
    height: 100vh;

    font-family: "Gidugu", serif;
    font-size: 1.7rem;
    color: white;
}

.contenuPrincipal{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

h1{
    font-family: "Limelight", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 5rem;
    padding-top: 20px;
    color: #FF00CA;
    text-shadow: #DA80FF 1px 0 10px;
    padding: 20px;
    max-width: 1120px;
}

h2{
    font-size: 4rem;
    text-align: center;
    padding: 10px;
    margin: 20px 10px;
}

h3{
    font-size: 2.5rem;
    text-align: center;
    margin: 20px;
}

.bloc-des-musiques{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.liste-muiques{
    width: 75%;
    max-width: 1000px;
}

.bloc{
    background-color: #EEC4C9;
    width: 85vw;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5%;
    border: thick double white;
}

.images{
    margin: 0 20px;
    border-radius: 5%;
    float: left;
    height: auto;
    border: solid white;
}

.images:hover{
    transform: scale(1.1);
}

.description{
    padding: 20px;
    margin: 20px;
    max-width: 800px;
}


.image-et-description{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

audio{
    display: none;
}

.play {
    font-size: 46px; 
    background-color: white;
    border: none;    
    padding: 1px 14px;
    border-radius: 90px; 
    cursor: pointer; 
}
  
.play:hover {
    transform: scale(1.1);
}

.les-3-en-bas{
    text-align: center;
}

button{
    border-radius: 50%;
}

.infos{
    font-size: 1rem;
}

form{
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

fieldset{
    background-color: #EEC4C9;
    border-radius: 8%;
    border: thick double white;
}

legend{
    background-color: white;
    color: #EEC4C9;
    font-size: 2.5rem;
    padding: 8px;
    border: solid white;

}

input, textarea{
    width: 500px;
    height: 30px;
}

input[type="button"]{
    background-color: #FF56D9;
    color: white;
    border: none;
    font-size: 1.6rem;
    width: 100%;
    height: 50px;
    transition: all 0.5s ease-in-out;
}

input[type="button"]:hover{
    cursor: pointer;
}

.star-required {
    color: #FF0C0C;
}

.txt-required {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.label{
    margin-top: 40px;
}

input:required:valid 
textarea:required:valid{
    border: 1px solid #1a961a;
}

input:required,
textarea:required{
    border: 1px solid #e52c2c;     
} 

.erreur{
    display: none;
}

.content-rubrique{
    display: flex;
    align-items: center;
    justify-content: center;
}

.rubrique{
    background-color: #EEC4C9;
    width: 85vw;
    height: auto;
    border-radius: 5%;
    margin: 20px;
    border: thick double white;
    padding: 20px;
}

footer{
    text-align: center;
    font-size: 1.5rem;
}

.contact{
    color: #FF56D9;
    text-decoration: none;
}

.contact:hover{
    text-decoration: underline;
    transform: scale(1.1);
}

.haut-de-page{
    position: fixed;
    right: 10px;
    bottom: 5px;
    font-size: 4rem;
    text-decoration: none;
}

.haut-de-page:hover{
    transform: scale(1.1);
}