    body{
	background-image: url(fond.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	margin: 0px;
	width: 100%;
	min-height: 100vh;
	font-family: Arial, sans-serif;
	font-size: 11pt;
}
    header nav{
	width: 100%;
	background-color: black;
	display: flex;
	justify-content: center;
	height: 60px;
}
	header nav ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	height: 100%;
	display: flex;
}
    header nav ul li{
	padding: 15px 30px;
	text-align: center;
	transition: background-color 0.3s;
}
    header nav ul li a{
	display: block;
	color: white;
	text-decoration: none;
	line-height: 30px;
	font-weight: bold;
}   
    header nav ul li a:hover{
	color: skyblue ;
	transform: scale(1.3);
}
.cv-body {
	display: flex;
	width: 90%;
	max-width: 1000px;
	margin: 30px auto;
	background-color: white;
	min-height: 900px;

}

.colonne1 {
	flex: 0 0 350px; 
	background-color: white;
	padding: 40px 30px; 
}
.profile-picture {
	width: 170px;
	height: 170px;
	border-radius: 50%; 
	object-fit: cover;
	display: block;
	margin: 0 auto 30px auto; 
	border: 5px solid blue; 
}
.name {
	font-size: 2em;
	text-align: center;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.job {
	font-size: 1.2em;
	text-align: center;
	font-weight: 300;
	margin-top: 0;
	margin-bottom: 30px;
}
address p {
	margin: 8px 0;
	text-align: center;
	font-style: normal;
}
.icon {
	margin-right: 10px;
}
.colonne1 h2 {
	border-bottom: 5px solid blue;
	padding-bottom: 8px;
	margin-top: 40px;
	text-transform: uppercase;
	font-size: 1.3em;
	color: black;
	font-weight: bold;
}
.colonne1 ul {
	list-style-type: none;
	padding-left: 0;
}
.colonne1 ul li {
	margin-bottom: 12px;
	color: black;
}
.colonne2 {
	flex-grow: 1;
	padding: 40px 50px;
	background-color: white; 
}
.colonne2 h2 {
	border-bottom: 5px solid blue;
	padding-bottom: 8px;
	margin-top: 40px;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-size: 1.6em;
	font-weight: bold;
}
.profile-summary {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 5px solid grey;
}
.profile-summary p {
	font-style: normal;
	line-height: 1.5;
	font-size: 1.1em;
	color: black; 
}
.colonne2 ul {
	padding-left: 20px;
}
.colonne2 ul li {
	margin-bottom: 15px;
	line-height: 1.4; 
}
.colonne2 ul ul {
	padding-left: 20px;
	margin-top: 5px;
}
.colonne2 b {
	font-weight: bold;
}
footer {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
footer form {
  background-color: white;
  padding: 25px;
  width: 90%; 
  max-width: 100vh; 
}
.carrer{
	font-size: 1.8em;
}
.clickable_image{
	margin-top: auto;
	text-align: center;
	padding: 20px;
}
.clickable_image img {
	max-width: 100%;
	height: auto;
}

main.cv-body:has(.video) {
	flex-wrap: wrap;
	font-weight: bold;
}
.video {
	padding-top: 5px;
	width: 100%;
	display: flex;
    justify-content: center;

}

@media (max-width: 768px) {
	.cv-body {
		flex-direction: column;
		width: 100%;
		margin: 0;
	}
	.colonne1 {
		flex: none;
		width: auto;
	}
}



