body {
	font-family: Helvetica;
	margin:0;
	padding:0;
	font-size: 15px;
	overflow-x:hidden; /*Pour cacher la barre de défilement horizontal*/
}

header {
	top:0;
	height: 265px;
	width:100%;
	background-color:#87a0c9;
	padding:5px;
	flex-direction: row;
}

header div {
	display:flex;
	align-items:center;
	justify-content:center;
}

header nav {
	display: flex;
	justify-content: center;
}

header nav ul {
	display:flex;	
	padding:0;
	margin: 0;
	list-style-type: none;
}

header nav ul li {
	margin:0 85px;
	font-size:16px;
}

header nav ul li a {
	color: black;
	text-decoration: none;
}


main div h2 {
	margin-left: 0px;
	list-style-type: none;
	font-size: 25px;
}

#photo {
	width: 170px;
	border: 3px solid #7aadff;
	border-radius:0;
}

#nom {
	text-align: center;
	margin:0;
	padding:0;
	width: 100%;
	font-size:30px;
}

main {
	display:flex;
	justify-content: space-between;
	margin-right: 200px;

}


aside {
	display: inline-block;
	background-color: #7aadff;
	width: 20%;
	padding:10px;
	margin-right:20px;
	box-sizing: border-box;
	word-wrap: break-word; /*Pour passer à la ligne dessous lorsqu'il n'y a plus assez de place pour écrire, ou quand la page n'est plus assez large*/
	font-size:15px;
}

aside h3 {
	font-size:20px;
}

#contenu {
	display: inline-block;
	width: 80%;
	margin-left: 50px; /*Pur ajouter de l'espace entre le contenu annexe (aside) et les rubriques du CV*/
}

main section h2 p {
	font-size:15px;
}

main section h2 ul li {
	font-size:15px;
}

#desc {
	font-size:12px;
}

section video {
	margin-bottom: 30px;
	display: block;
    margin-left: auto;
    margin-right: auto;
	width:250px;
	height:auto;
}

footer {
	width:100%;
	background-color:#87a0c9;
	padding:5px;
	display:flex;
	justify-content:center;
	align-items: center;
	padding: 20px;
}

footer ul li a {
	text-decoration: none;
}

footer ul {
    padding: 0;
    margin: 0;
    display: flex; 
	flex-direction: column;
}

footer ul li {
	list-style-type:none;
	margin:0;
}

#div_logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: 30px;
}

#div_logo img {
	width:300px;
	height:71px;
}

form {
	display:flex;
	flex-direction:column;
	gap:10px;
	margin-bottom:30px;
}

form label, form input[type="text"]{
	width:100%;
}

form input[name="message"]{
	height: 200px;	/*Pour faire en sorte que le champ de texte pour le contenu du mail soit plus grand*/
}

form input[type="submit"],
form input[type="reset"] {
    width: 100px;
    padding: 10px 20px;
    margin-top: 10px;
	margin-left:auto;
	margin-right:auto;
}