/*
    Auteur : Dorian Barras
    Page   : Style Personnages
    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: 40%;
}
/*Bordures et coins adoucis*/
h1, p, 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;
}
/*Aligmenent des paragraphes*/
p{
  width: 32vw;
  text-align: justify;
  font-size: 1.4em;
}
/*Placement et taille des images*/
img{
  width: 16%;
  height: auto;
  float: right;
  margin-right: 7%;
}
/*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;
}