@import url('https://fonts.googleapis.com/css2?family=Henny+Penny&display=swap');

.menu-de-navigation ul {
    text-align: center;
    font-size: 200%;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
.menu-de-navigation li {
    background-color: blue;
    display: inline;
  }
  .menu-de-navigation li:hover {
    background-color: lightblue;
  }
.menu-de-navigation a {
    padding: 1%;

color: white;
}

.tete {
    text-align: center;
    color: blue;
}
.tete * {
    margin: 0px;
    padding: 0px;
}
.tete h1{
    font-size: 350%;
    font-family: 'Henny Penny', cursive;
}

.contenant {
    margin: 5%;
    margin-top: 1%;
    margin-bottom: 1%;
}

.peering-db {
    background-color: rgb(79, 233, 79);
    border: 10px groove red;
    padding: 1%;
}

.peering-db table {
    overflow: auto;
    display: block;
    border-collapse: collapse;
    width: 100%;
}
.peering-db thead{
    background-color: red;
    color: white;
}
.peering-db td {
    padding: 2px;
    border: 1px solid red;
}

code {
    background-color: gray;
    color: white;
}

#grafiks {
    background-color: orange;
    border: 10px groove red;
    text-align: center;
}
#grafiks h3{
    text-decoration: underline;
    font-size: 200%;
}
.image-contenant {
    background-color: grey;
    color: white;
    text-align: center;
    width: 50%; 
    margin: 0 auto;
}
@media (max-width: 800px) {
    .image-contenant {
        width: 100%; 
    }
 }

.image-contenant img {
    padding: 2%;
    width: 80%;
    height: auto;
}

.texte-du-bas {
    color: green;
    text-align: center;
}