body
{
    font-family: 'Roboto', sans-serif;
    text-align: left;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

img{
    width: 100%;
}
.title
{
    font-size: 11pt;
    font-weight: bold;
}

header{
    background-color: #444444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    min-height: 8vh;
    position: sticky;
    z-index: 3;
    top: 0;
}
.categories{
    display: flex;
    gap: 30px;
}
header>a>img{
    margin-left: 10px;
    padding: 10px;
    height: 60px;
    width: 75px;
    transition-duration: .4s;
}


header>a>img:hover {
    background-color: white;
}

.categories>a{
    text-decoration: none;
    color: white;
    transition-duration: .3s;
}
.categories>a:hover{
    text-decoration: underline;
    /*color: blue;*/
}

.adminButton{
    margin-right: 15px;
}

section{
    margin: 20vh;
    padding: 30px;
}

footer{
    min-height: 5vh;
    background-color: #444444;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nomFooter{
    margin-left: 10px;
    padding: 10px;
}

footer>a{
    margin-right: 10px;
    text-decoration: none;
    color: white;
}

.conteneur{
    max-height: 100vh;
}

/*Page d'accueil*/
.carousel-inner{
    max-height: 92vh;
}
/* Page de présentation */

.mainPresentation{
    /*background-color: rgba(70, 172, 255, 0.8);*/
    padding: 10px;
}

#presentation,
#technique,
#histoire,
#contact{
    margin: 10px;
}

.imgpres{
    display: flex;
    justify-content: center;
    align-items: center;
}
.imgpres>img{
    width: 30vw;
}

.firstP{
    display: flex;
    justify-content: center;
    font-size: 18pt;
    margin-bottom: 30px;
}
.otherP{
    font-size: 18px;
}
.maintech{
    /*background-color: rgba(56, 204, 78, 0.8);*/
    padding: 10px;
}
li{
    font-size: 18px;
    margin-bottom: 10px;
}
.titreFicheTechnique{
    font-size: 18pt;
    margin: 15px 0 30px 0;
    display: flex;
    justify-content: center;
}
.personne{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    gap: 10px;
}

.personne>img{
    width: 50%;
}

.sousTitre{
    display: flex;
    justify-content: center;
    font-size: 14pt;
    margin: 3vh;
}

.moyenContact{
    display: flex;
    align-items: center;
}

.moyenContact svg{
    margin-right: 10px
}

.map{
    display: flex;
    justify-content: center;
    margin-top: 5vh;
}

/* Admin */

.mainConnexion{
    display: flex;
    justify-content: center;
    align-items: center;

}

.formConnexion{
    display: flex;
    flex-direction: column;
}

.divFormConnexion{
    max-width: 20vw;
}

.titreConnexion{
    font-size: 20pt;
}

input[type="submit"]{
    margin-top: 10px;
}