html {
    font-size: 62.5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

h3 {
    margin-bottom: 5px;
    font-size:120%;
    text-decoration: underline;
}
a, a:visited {
    color: #ff6600;
    text-decoration: none;

}

a:hover {
    text-decoration: underline;
}

.header {
    text-align: center;
    position: relative;
    margin-top: 30px;
    margin-bottom: 10px;
}

.header-logo {
    display: inline-block;
    margin: 20px;
}

.header-toogle {
    display: none;
}

.orange {
    color: #ff6600;
}


h1 {
    font-size: 3.5rem;
}

.header-menu {
    width: 80%; /* 80% du contenant, donc du header qui lui fait 100% du body */
    margin: 0 auto; /* de cette manière on centre horizontalement */
    display: flex;
    justify-content: space-around; /* on met les espaces entre les éléments, y compris le plus à gauche et à droite */
}


.header-menu a {
    padding: 10px 15px;
    font-size: 1.6rem; /* 1.6rem -> 16px par défaut */
    color: #202020;
    text-transform: uppercase;
    text-decoration: none; /* pas de souligné sur le lien */

    background-color: #fff;
    transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
    /* On veut une transition lorsque l'on survole
     C'est ici qu'il faut la mettre et pas en dessous, et on dit combien de temps et la fonciton de transition
     plus d'info ici : https://developer.mozilla.org/fr/docs/Web/CSS/CSS_Transitions/Utiliser_transitions_CSS
     */
}

.header-menu a:hover {
    background-color: #ff6600; /* on inverse les couleurs lorsque l'on survole */
    color: #fff;
}

main  {
    max-width: 80%;
    margin: 50px auto;
}

section {
    margin-bottom: 50px;
}

h2 {
    font-size: 2rem;
    color: #ff6600;
    margin-bottom: 20px;
}

p.title {
    font-size: 2rem;
}

p {
    font-size: 1.6rem;
    margin: 0 0 25px 0;
    text-align: justify;
    line-height: 1.7;

}

*
ul {
    margin-left: 50px;
}

ul li {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

#content {
    min-height:100vh; /* 1 */
    display:flex; /* 2 */
    flex-direction:column; /* 3 */
}

main {
    flex-grow:1; /* 4 */
    width : 100%;
}

footer {
    width:95%;
    font-size: 1.6rem;
    max-width: 95%;
    margin: 20px auto;
    display : flex;
    justify-content: space-between;
    align-items: center;
}

footer a, footer a:visited{
    margin : 0 20px;
    color : lightslategray;
}

.row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:50px;
}
