html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Advent Pro', sans-serif;
}

main{
    margin : 10px;
    text-align: center
}

/****************Header*****************/

    *{
        margin: 0px;
        padding: 0px;
        font-family: Verdana, Geneva, sans-serif;
    }
    
    #logo {
        width: 60px;
        height:60px;
        position: relative;
        padding-right: 450px;
        margin: 5px;
        vertical-align: middle;

    }

    nav{
        width: 100%;
        margin: 0 auto;
        background-color: white;
        position: sticky;
        top: 0px;
        border: 2px solid #ccc;
        font-size: 15px;
        line-height: 4;

    }
    
    nav ul{
        list-style-type: none;
    }
    
    nav ul li{
        float: left;
        width: 20%;
        text-align: center;
        position: relative;
    }
    
    nav ul::after{
        content: "";
        display: table;
        clear: both;
    }
    
    nav a{
        display: block;
        text-decoration: none;
        color: black;
        border-bottom: 2px solid transparent;
        padding: 10px 0px;
    }
    
    nav a:hover{
        color: orange;
        border-bottom: 2px solid gold;
    }
    
    .sous{
        display: none;
        box-shadow: 0px 1px 2px #CCC;
        background-color: white;
        position: absolute;
        width: 100%;
        z-index: 1000;
    }
    nav > ul li:hover .sous{
        display: block;
    }
    .sous li{
        float: none;
        width: 100%;
        text-align: left;
    }
    .sous a{
        padding: 10px;
        border-bottom: none;
    }
    .sous a:hover{
        border-bottom: none;
        background-color: RGBa(200,200,200,0.1);
    }
    .deroulant > a::after{
        content:" ▼";
        font-size: 12px;
    }
    
    .conteneur{
      margin: 50px 20px;
      height: 1500px;
    }
/****************Img********************/
  
#verset{
    padding-top: 60px;
    background: url(/img/bible.jpg) no-repeat fixed 50% 50%;
    background-size: cover;
    height: 610px;
    width: 100%
}

h1{
    font-family: 'Dancing Script', cursive;
    text-align: center;
    color:lightdark;
    font-size: 4em;
    margin-top: 50px;
    text-shadow: 1px 2px 2px rgb(255, 255, 255);
}

/*****************footer****************/

footer {
    background-color: #916359 ;
    height: auto;
}
  fieldset {
    margin-bottom: 15px;
    padding: 10px;
  }
   
  legend {
    padding: 0px 3px;
    font-weight: bold;
    font-variant: small-caps;
  }
   
  label {
    width: 110px;
    display: inline-block;
    vertical-align: top;
    margin: 6px;
  }
   
  em {
    font-weight: bold;
    font-style: normal;
    color: #f00;
  }
   
  input:focus {
    background: #eaeaea;
  }
   
  input, textarea {
    width: 249px;
  }
   
  textarea {
    height: 100px;
  }
   
  select {
    width: 254px;
  }
   
  input[type=checkbox] {
    width: 10px;
  }

  footer input.butt{
      padding :10px;
      width: auto
  }

h3{
    text-align: center;
}

p#fin{
    text-align:center;
    margin-bottom: 10px
}

footer img{
    width: 50%;
    height: 150px;
    padding-left: 100px;
} 

.flex-contain{
    display: flex;
    font-size: 20px;
    box-sizing: border-box;
    margin: 0;
    height: 350px;
    background-color: black;
    color: white

}
.ligne{
    flex-flow: row wrap;
}
.colonne{
    flex-flow: column wrap;
}
.flex-element{
    flex-basis: 20%;
    flex-grow: 1;
    flex-shrink: 0;
    background-color: white; 
    padding: 10px 0px;
    text-align: center;
    box-sizing: border-box;
    margin: 5px;
    background-color: black;

}

h2{
    text-align: center;
}