
@font-face {
    font-family: police;
    src: url("fonts/Motterdam.ttf");
}
a{
    color: black;
    text-decoration: none;
}
a:visited{
    color:black;
    text-decoration: none;
}
body {
    display: flex;
	justify-content: center;
	align-items: center;
    flex-direction: column;
}
header{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    background-color: lightgrey;
    min-height: 200px;
}
.bandeau{
    display: flex;
    flex-direction: row;
    width:30%;
    min-width: 480px;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.bandeauH{
    display: flex;
    flex-direction: row;
    width:30%;
    min-width: 480px;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bandeau img {
    width: 30%;                 /* Chaque image prend 30% de la largeur */
    height: auto;
    max-height: 190px;               /* Conserve les proportions */
    object-fit: contain;
}

h1{
    font-family: police;
    font-size: 80px;
    height:100%;
}
nav{
    width:100%;
    display: flex;
    flex-direction: row;
    justify-content:flex-end;
    align-items:flex-end;
}
nav ul{
    display:flex;
    flex-direction: row;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    padding-left:0px;
    gap:16px;
}
nav ul li{
    position: relative;
    list-style-type: none;
    min-height: 30px;
    border-radius: 5px;
    padding: 5px;
    background-color: lightgray;
}
nav ul li a{
    line-height: 30px;
    width: 100%;
}
.survol {
    display: none;
    position: absolute;
    top: 100%;
    left:0px;
    list-style: none;
    width: auto;
    word-wrap: none;
}
.survol li{
    list-style-type: none;
    justify-content: left;
    background-color: grey;
}
nav ul li:hover .survol{
    display: block;
}
nav ul li:hover{
    background-color: grey;
}
.survol li a{
    white-space: nowrap;
}
.survol li:hover{
    background-color: lightgray;
}
main{
    width:100%;
    display:flex;
    flex-direction: column;
    background-color: lightgrey;
}
section{
    padding: 15px;
}
section h1{
    font-family: police;
    font-size: 6em;
    height:100%;
    display: table;
    margin: auto;
}
.case p{
    font-family: sans-serif;
    font-size: 20px;
}
main section section{
    display: flex;
    flex-direction: row;
}
.ligne{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15%;
}
.ligne img{
    width: 25%;
    min-width: 200px;
}
.case{
    width: 60%;
    min-width: 200px;
    align-content: center;
}
.case p{
    text-align: right;
    word-wrap: break-word;
}
.tarifs{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
}
.box{
    background-color: grey;
    width: 500px;
    min-height: 500px;
    font-family: police;
    font-size: 2em;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 25px;
    padding: 25px;
    gap: 5px;
}
.box img{
    height: 60px;
    width: auto;
}
.box h2{
    max-width: 80%;
}
.box p{
    width: 100%;
}
#contact{
    text-align: center;
}
#contact ul li{
    list-style-type: none;
}
#apropos{
    text-align: center;
}
