@import url('https://fonts.googleapis.com/css2?family=Advent+Pro&family=Dancing+Script:wght@600&display=swap');

body{
    font-family: 'Advent Pro', sans-serif;
    padding: 0;
    margin: 0;
}
ul{
    margin: 0;
    padding: 0;
}
li{
    list-style-type: none;
}
h2{
    text-transform: uppercase;
    text-align: center;
    padding-top: 30px;
    font-size: 2em;
}
a{
    text-decoration: none;
    color: black;
}
/* *******************NAVBAR************************* */
nav{
overflow: hidden;
background-color: #FFFAE1;
position: fixed;
width: 100%;
opacity: 0.9;
}
ul li{
    float: right;
    font-size: 1.2em;
}
ul li a{
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 18px 16px;
    background-color: #FFFAE1;
    color: black;
    cursor: pointer;
}
#logo{
    font-family: 'Dancing Script','cursive';
    font-weight: bold;
    float: left;
}
/* *****************IMAGE PRINCIPALE*******************/
#imagePrincipale{
    padding-top: 60px;
    background: url(media/image-projet.JPG) no-repeat fixed 50% 50%;
    background-size: cover;
    height: 799px;
}
h1{
    font-size: 'Dancing Script', 'cursive';
    text-align: center;
    color: antiquewhite;
    font-size: 6em;
    margin-top: 100px;
    text-shadow: 1px 3px 2px blue;
}
#premierTrait{
    height: 1px;
    width: 50%;
    margin: -3px auto;
    background-color: #FFFAE1;
    box-shadow: 1px 3px 2px blue;
}
h3{
    text-align: center;
    color: black;
    font-size: 3em;
}
/* *********************FOOTER*********************/
footer{
    background-color: #524a3a;
    color: #FFFAE1;
    padding: 20px 0 10px 0;
    text-align: center;
}
form{
    margin: 0 auto;
    max-width: 900px;
}
li a:hover{
    background-color: #e55039;
    color: #FFFAE1;
    cursor: pointer;
    transition: 0..3s ease-in-out;
}
#deuxiemeTrait{
    height: 1px;
    width: 75%;
    background-color: #FFFAE1;
    margin: 60px auto;
}
#copyright{
    display: flex;
    margin-bottom: 20px;
    padding: 0 10%;
    width: 50%;
    text-align: left;
    color:#FFFAE1;
}
#nom{
    margin-top: -20px;
    margin-left: 14%;
  text-align: left;
  font-size: 25px;
}
#textIntro{
    text-align: center;
    font-size: 10px;
}
button{
    margin-right: -700px;
   border: 0;
   background: white;
   color: blue;
   position: relative;
   overflow: hidden;
   padding: 20px 20px;
   border-radius: 30px;
   cursor: pointer;
   font-size: 1.5em;
   box-shadow: 0px -0px 0px 0px rgba(143, 64, 248, .5);
   transition: all .5s;

}
button:after{
    content: "";
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, #27d86c 0%, #26caf8 50%, #c625d0 100%);
    position: absolute;
    top: -50px;
    left: -100px;
    z-index: -1;
    transition: all .5s;
}
button:hover::after{
    transform: rotate(150deg);
}
button:hover{
    transform: translate(0, -6px);
    box-shadow: 10px -10px 25px 0 rgba(143, 64 248 .25), -10px 10px 25px 0px rgba(39, 200, 255, .25);
}
#button:hover{
    background-color: #e55039;
    color: #FFFAE1;
    cursor: pointer;
    transition: 0..3s ease-in-out;
}
/* ************************TACHE************************** */
#tacheRep{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
#tacheRep h3{
    font-size: 20px;
}
#tacheRep img{
    height: 300px;
    width: 400px;
    margin-top: 0px;
    margin-bottom: 30px;

}
#tacheRep #left
{
background-color: black;
color: #FFFAE1;
padding: 20px 0 10px 0;
text-align: center;
}
/* *********************CAHIER************************ */
#charge h3{
    text-align: left;
    font-size: 30px;
    margin-left: 1%;
}
/* ***********************Tableau************************** */
#tableau{
    border-collapse: collapse;
    min-width: 1000px;
    min-height: 500px;
    width: auto;
    box-shadow: 0 50px rgba(0,0,0,0,15);
    cursor: pointer;
    margin: 100px auto;
    border: 2px solid midnightblue;
}
thead tr{
    background-color: midnightblue;
    color: #FFFAE1;
    text-align: center;

}
th ,td{
    padding: 15px 20px;
}
tbody ,tr ,td ,th{
    border: 2px solid black;
}
tbody tr:nth-child(even){
    background-color: #FFFAE1;

}
/* ***********************Texte intro index************************ */
#slt{
    text-align: center;
    font-size: 13px;
margin-top: -70px;
}