body {
    background-color: midnightblue;
}

div {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 24pt;
}

h2 {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 12pt;
}

#btnAccueil {
    background-color: silver;
    border-radius: 10px;
    height: 30pt;
    width: 100pt;
}

a {
    display: grid;
    place-items: center;
}

#titreP1 {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 24pt;
    border-width: 10px;
    border-style: double;
    border-color: black;
    padding-top: 30pt;
    padding-bottom: 30pt;
}

#rechercherP1 {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 10px;
    margin-top: 10px;
}

.cpntSearch {
    margin: 10pt;
    font-size: 18px;
}

table,
caption,
th,
td {

    border: 2px solid white;
    border-collapse: collapse;
    color: black;
    background-color: silver;
    font-family: Arial, Helvetica, sans-serif;


}

#entete {
    font-weight: bold;
    font-size: 15pt;
}

table {
    margin: auto;
}

td {
    padding: 10pt;
}

#tabEtBtn {
    font-size: 12pt;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 0%;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

#btnMap {
    position: fixed;
    display: block;

    right: 10px;
    bottom: 10px;

    font-size: 2em;
    padding: 15px;
    color: black;
    border: none;
    outline: none;
}

#mapContainer {
    height: 600px;
}

#scrollUp {
    position: fixed;
    bottom: 10px;
    right: -100px;
    opacity: 0.5;
}

/*Celui-ci fait que si l'écran est plus petit que 1222px de largeur alors les boutons se mettre ont dans une autre position*/
@media only screen and (max-width:1222px) {
    .conteneur {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav li {
        line-height: 60px;
    }
}

/*Celui-ci fait que si l'écran est plus petit que 416px de largeur alors les boutons se mettre ont dans une autre position*/
@media only screen and (max-width:416px) {
    .conteneur {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .rectangleBouton {
        font-size: 15px;

    }
}