/* La partie ci-dessous est consacrée à l'en-tête de toutes les pages*/

* {margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1 {
    text-align: center;
}
header {
    background-color: aquamarine;
    flex-basis: 100%;
}
header img{
    text-align: left;
}
nav{
    padding: 20px;
}
nav ul {
    display: flex;
    list-style-type: none ;
    justify-content: space-between;
}
nav li {
    display: flex;
    flex-grow: 2;
}
nav li a {
    display: flex;
    padding: 0.5cm 0.25cm;
    background-color: whitesmoke;
    border-radius: 10px;
    text-decoration: none;
    flex: 1;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 20px;
}

nav .actif {
    background-color: teal;
}
a {
    color: black;
}
nav a:hover {
    background-color: cyan;
}

/*La partie pour l'en-tête finit ici, on commence la mise en page de la section centrale*/

body {
    background-color: rgb(6, 229, 207);
}
.calmar div{
    background-image: url(../images/méduse1.jpg);
}
main h2 {
    font-size: 25px;
    text-align: center;
}
main h3 {
    font-size: 23px;
    text-align: center;
}

/*La partie ci-dessous, avec au début .Poisson est le style du tableau de la page des poissons*/
.Poisson table {
    text-align: center;
    border: solid 3px black;
    border-collapse: collapse;
}
.Poisson th {
    font-size: 22px;
}
.Poisson td {
    border: solid 1px black;
    padding: 10px;
}
main p {
    font-size: 20px;
}
main li {
    font-size: 20px;
}
main ol {
    list-style-position: inside;
}
main ul {
    list-style-position: inside;
}
.Bibliographie ul {
    list-style-type: disc;
}
.choix ul{
    list-style-type: square;
}


footer {
    text-align: center;
}
 
