header {
	position: fixed;
	top: 0;
    left: 0;
	width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
	padding-right: 20px;
    background-color: #183B50;
	z-index: 1000;
}

.logo img {
    max-width: 200px;
	height: auto;
}

.titre {
	padding-left: 10px;
    text-align: left;
	font-family: 'Helvetica', sans-serif;
	font-weight: bold;
	color: white;
    flex-grow: 1; /* permet à cet élément de prendre tout l'espace disponible */
}

.contact {
	margin-right: 50px;
}

.contact a {
    padding: 10px;
    background-color: #183B50; /* couleur du fond du bouton, à adapter selon tes besoins */
    font-family: 'Helvetica', sans serif;
	color: #DDDDDD; /* couleur du texte, à adapter selon tes besoins */
    border-radius: 8px;
	border: 1px solid #DDDDDD;
	text-decoration: none;
}

.contact a:hover {
    background-color: #DDDDDD; /* couleur du fond du bouton, à adapter selon tes besoins */
    border: 1px solid #DDDDDD;
	color: black; /* couleur du texte, à adapter selon tes besoins */
}