
 {

    box-sizing: border-box;
}

html {
 background-color: #feebf4;
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto";
  margin: 0 auto;
  padding: 0 ;
   
}

a:link {
  color: #cc097f; /* #f7168a */
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #cc097f;          /* #f7168a */
  background-color: transparent;
  text-decoration: none;
}


/**Header NavBar**/

header {
    /*empeche de cacher le texte en dessous contrairement à fixed */
    text-align: center; 
    background-color: #353535;
    height: 60px;
    width: 100%;
    position: sticky;
    top: 0;
    box-shadow: 0px 4px 4px 0 #ff00002b;
    transition: box-shadow 1s;
    z-index: 1;
    /*pour rester toujours en avant-plan*/
}

.shadowHeader {
    box-shadow: 1px 8px 7px 2px #ff51002b;
}

header a {
    text-decoration: none;
    color: white;
}

.progressBar-container {
    width: 100%;
    height: 4px;
    background-color: #777777;
}

.progressBar {
    height: 100%;
    width: 0%;
    background-color: rgb(192, 127, 6);
    transition: all 0.5s;
}



.navbar {
    display: flex;
    height: 100%;
    width: 100%;
}

.nav-ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
    width: 100%;
    justify-content: space-evenly;
}  

.nav-ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    /*Aulieu de 60px à cause des 4px de la progressBar*/
    width: 240px;
    font-size: 1.5rem;
}

.nav-ul a:hover {
    background-color:#d003;
    border-radius: 5px;

}

/**Articles**/

h1 {
    text-align: center;
}

h2{
    text-align: center;
}

article {
    width: 90%;
    max-width: 900px;
    margin:auto;
    margin-bottom: 50px;
    scroll-margin-top: 60px;
    text-align: justify;
    /*Decale l'ancre de 60px afin de ne pas apparaitre sous le header*/
}


.text {
  display: inline-block;
  vertical-align: top;
  margin-left: 50 px;
}

.Research{
    max-width: 1025px;
}

.misc{
    max-width: 910px;
}

@keyframes flou {
    from {
        transform: translateX(-20px);
        filter: blur(2px);
    }
    to {
        transform: translateX(0);
        filter: blur(0);
    }
}


/**Footer**/

footer {
    height: 200px;
    box-shadow: 0px -4px 4px 0 #ff00002b;
    transition: box-shadow 1s;
    text-align:center;
}


.shadowFooter {
    box-shadow: 1px -8px 7px 2px #ff51002b;
}
