/*
    Auteur : Dorian Barras
    Page   : Style Accueils diverses
    Date   : 20.12.19
*/
/*Style général (image de fond, alignement du texte, ...)*/
body{
  background-image: url(../images/Fond.jpg);
  background-size: cover;
  text-align: center;
  font-family: arial;
  margin-bottom: 100px;
}
/*Définition du container*/
.container{
  display: flex;
  flex-wrap: wrap;
}
/*Définition des Items*/
.item{
  width: 30%;
}
.musicitem{
  width: 30%;
  margin-left: 3%;
}
/*Définition du style des images*/
img{
  width: 50%;
  height: auto;
}
/*Bordures et coins adoucis*/
h1, figcaption, img{
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 5px;
  background-color: #EFCFF9;
}
/*Taille du titre*/
h1{
  font-size: 3em;
  width: 30%;
  margin: auto;
}
/*Partie de mise en page pour la page des musiques*/
figcaption{
  margin-left: 22%;
  margin-right: 22%;
  width: auto;
}
audio{
  width: 100%;
  margin-top: 2%;
}
/*Décoration du texte de la page des sources*/
.sources{
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 5px;
  background-color: #EFCFF9;
  text-align: justify;
  margin-left: 5em;
  margin-right: 5em;
  text-decoration: none;
}
/*Couleur des liens et enlevage du soulignement*/
a{
  font-size: 1.4em;
  text-decoration: none;
  color: #000000;
}
/*Menu de navigation*/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  position: fixed;
  bottom: 0;
  width: 100%;
}
li {
  float: left;
}
li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
li a:hover:not(.active) {
  background-color: #111;
}
.active {
  background-color: #EFCFF9;
}