body {
  background: radial-gradient(white, #fbf6e7);
}

.app-container {
  width : 80%;
  margin : 3em auto;
  padding : 20px;
  background-color : #ffffff;
  border-radius : 8px;
  box-shadow : 0 4px 8px rgba(0, 0, 0, 0.2);
  /****/
  transition: all 0.4s;
}

.app-container:hover {
    scale: 1.05;
    color: black;
}


/** POUR L'IMAGE DE LA MUSIQUE**/
.musique-img {
    height: 400px;
    margin-top: 1em;
    border-radius: 1rem;
}





/** TEXTE DU SITE**/

header {
  text-align: center;
  font-family: "Suez One";
}
 

h1 {
    font-family: "Suez One", serif ;
    font-size: 3em;
  }
  
h2 {
    font-family: "Rubik", sans-serif;
  }



p {
    font-family: "Rubik", sans-serif;
    margin-left: auto;
  }

.description-wrapper {
  margin-left: 5rem;
  float: right;
  letter-spacing: 0.02em;
  font-family: "Rubik" , sans-serif;
  width: 40vw;
  font-size: 1.2rem;
  
}



/** POUR LE LOGO**/
.logo-container {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.logo-link {
    width: 60px;
    height: 80px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s ease;
}


/** POUR LE BOUTON AUDIO**/
audio {
  display: none;
}


/** POUR LE FORMULAIRE**/

.formulaire {
  text-align: center;
  font-family: "Rubik", sans-serif;
    width : 80%;
    margin : 3em auto;
    padding : 20px;
    background-color : #ffffff;
    border-radius : 8px;
    box-shadow : 0 4px 8px rgba(0, 0, 0, 0.2);
    /****/
    transition: all 0.4s;

}

.formulaire:hover {
  scale: 1.05;
  background-color: #fbcbcb ;
  color: black;
}

span {
  color: red;
  font-weight: bold;
}

.submit{
  font-size: 20px;
  margin-top: 40px;
  background: linear-gradient(#e66465, #9198e5);
  /**background-color: #747474;**/
  border: 0px;
  border-radius: 5px;
  color: black;
  padding: 10px;
  cursor: pointer;
}
.submit:active{
scale: 1.25;
}

.extrait {
  cursor: pointer;
}


input , textarea {
  margin-bottom: 1rem;
  padding: 0.5rem;
  width: calc(100% - 1rem);
  border-radius: 4px;
  border: 1px solid #ff2474;
  background-color: rgba(227, 227, 227, 0.437);
  color: black;
}


.input:hover , .textarea:hover {
  margin-bottom: 1rem;
  padding: 0.5rem;
  width: calc(100% - 1rem);
  border-radius: 4px;
  border: 1px solid #ff2474;
  background-color: rgb(255, 255, 255);
  color: black;
}


form textarea {
  resize: vertical;  
}



/**footer**/

footer h4 {
  font-family: "Rubik", sans-serif;
  bottom: 10px; 
  right: 10px;
  color: #121212;
  font-size: 12px;
}

.popup-btn {
  cursor : pointer;
  font-family: "Rubik", sans-serif;
  border: black;

}

.close-btn {
  cursor: pointer;
  border: black;

}

.popup {
  z-index: 1000;
  font-family: "Rubik", sans-serif;
  border: black;


}

.popup .close-btn {
  align-self: flex-end;
  background-color: white;
  color: rgb(0, 0, 0);
  border: black;
  padding: 0.5rem;
  font-size: 0.7rem;
  font-family: "Rubik", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  border-radius: 7px;
}

.popup .close-btn:hover {
  background: linear-gradient(#e66465, #9198e5);;
  transform: scale(1.05);
  font-family: "Rubik", sans-serif;
  border: black;

}

footer {
  background-color: #fbf6e7;
  padding: 2rem;
  position: relative;
  display: flex; 
  flex-direction: column; 
  align-items: center;
  gap: 1rem; 
}

.footer-buttons {
  display: flex;
  flex-direction: row; 
  justify-content: center;
  gap: 15px;
  border: black;
}

#mentions-politique {
  display: flex;
  gap: 10px;
  border: black;


}


.popup-btn {
  padding: 10px;
  background-color: #ffffff;
  color: #121212;
  border: black;
  border-radius: 7px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  overflow: hidden; 
}

.popup-btn:hover {
  background: linear-gradient(#e66465, #9198e5);
  transform: scale(1.05);
  border: black;

}


/**.pop-up-container {
  max-width: 70%;  
  max-height: 70vh;  
  overflow: hidden;  
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}**/

#credits-content {
  max-height: 400px; 
  overflow-y: auto; 
  padding-right: 10px; 
}


.playPauseButton {
  width: 60px;
  height: 60px;  
  border: grey;
  border-radius: 4px;
  background-color: #fbf6e7;
  color: #121212;
  cursor: pointer;
  font-size: 2rem;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease
}

.playPauseButton:hover {
  background: linear-gradient(#e66465, #9198e5);
  transform: scale(1.05);
}