body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	display: flex;
	flex-direction: column;
}

.container {
    display: flex;
	flex: 1;
	background-color: #EBEBF2; /*#F2ECE8;*/
}

.sidebar {
    background-color: #401F21;
    width: 275px;
    padding: 20px;
    box-sizing: border-box;
    height: 100vh;
	color: white;
}

.sidebar h1 {
    color: white;
    font-size: 24px;
}

.sidebar .logo {
    width: 100%;
    margin-bottom: 20px;
}

.sidebar h1 {
	font-size: 30px;
}

.sidebar nav ul {
    list-style-type: none;
    padding: 0;
}

.sidebar nav ul li {
    margin: 15px 0;
}

.sidebar nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.content {
    padding: 20px;
    flex-grow: 1;
	margin-top: 70px;
	margin-left: 25px;
	max-width: 780px;
}

.content h2 {
    font-size: 28px;
	color: #401F21;
    margin-top: 0;
	border-bottom: 3px double #401F21;
    padding-bottom: 10px;
}

.contentLarge {
    padding: 20px;
    flex-grow: 1;
	margin-top: 70px;
	margin-left: 25px;
	max-width: 880px;

}

.contentLarge h2 {
    font-size: 28px;
	color: #401F21;
    margin-top: 0;
	border-bottom: 3px double #401F21;
    padding-bottom: 10px;
}

.contentHome {
    padding: 20px;
    flex-grow: 1;
	margin-left: 25px;
	max-width: 780px;
}

.contentHome h2 {
    font-size: 28px;
	color: #401F21;
    margin-top: 50px;
	border-bottom: 3px double #401F21;
    padding-bottom: 10px;
}

.titre {
	text-align: left;
	margin-top : 40px;
	margin-bottom: 50px;
}

.profile {
    display: flex;
}

.profile img {
    border-radius: 8px;
    width: 180px;
    height: auto;
    margin-right: 20px;
	margin-bottom: 5px;
}

.profile-text {
    flex: 1; /* Permet au texte de prendre tout l'espace disponible */
	list-style-position: outside;
}

.profile-text p {
    margin: 0px 0px;
	/*text-align: justify;*/
}

.profile-text a {
    color: #007bff;
    text-decoration: none;
}

.profile-text a:hover {
    text-decoration: underline;
}

.HomeTexte a {
    color: #007bff;
    text-decoration: none;
}

.HomeTexte a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #E9E9E9;
    padding: 20px;
    text-align: left;
    color: black;
}

.footer h2 {
	margin: 0 290px;
	line-height: 4;
}

.footer p {
	margin: 0 290px;
}

.margeGauche {
	margin: 0 290px;
}

.bouton{
	display: inline-block;
	background-color: #E9E9E9;
	border-radius: 10px;
	border: 2px solid black;
	color: black;
	text-align: center;
	font-size: 20px;
	padding: 10px;
	width: 100px;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	margin-right: 15px;
	text-decoration: none;
}
.bouton:hover{
	background-color: #ffffff;
	border: 2px solid black;
	color: black;
	text-align: center;
}