/*
    Description : style css en commun pour toute les pages
    Auteur      : Noa Berrier
    Date        : 16.01.2026
*/
header{
    text-align: center;
    color: rgb(71, 121, 214);
    margin-right: none;
}
hr{
   border-color: rgb(71, 121, 214);
   position: static;
}
.titre{
    text-align: center;
    font-size: 40px;
    font-style: italic;
    color: rgb(71, 121, 214);
    margin-right: 20%;
    margin-left: 20%;
}
body{
    background-color: #969696;
}
nav a{
    color: rgb(4, 46, 124);
}
.btn {
    display: inline-block;
    cursor: pointer;
}
.btn-navbar {
    float: right;
    padding: 12px 15px;
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 25px;
}
.icon-bar {
    display: block;
    width: 18px;
    height: 3px;
    background-color: rgb(71, 121, 214);
    -webkit-border-radius: 1px;
       -moz-border-radius: 1px;
            border-radius: 1px;
}
.icon-bar + .icon-bar {
    margin-top: 3px;
}
.nav {
    display: none;
}
 
nav ul
{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
 
nav li
{
    min-width: 33%;
    padding-top: 1em;
    padding-bottom: 1em;
    text-align: center;
    background-color:rgb(71, 121, 214);
   
}
 
nav li:hover {
    background-color: rgb(255, 255, 255);    
}
#nav {
    display: none;
    position: absolute;      /* clé du problème */
    top: 60px;               /* ajuste selon la hauteur de ton header */
    right: 20px;
    background-color: rgb(71, 121, 214);
    z-index: 1000;           /* pour passer au-dessus du contenu */
}
a {
    text-decoration: none;
    color: rgb(71, 121, 214);
  }
  @media screen and (max-width: 780px) {
    .titre{
        margin-left: 0%;
        margin-right: 0%;
    }
  }