/**
 * 2h
 */
body {
	display: flex;
	font-family: "Helvetica";
	margin: 30px;
}

/**
 * Classes liées au bandeau
 */
 
.bandeau {
	background-color: #feca07;
	width: 300px;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.profilImg {
	width: 65%;
	height: auto;
	border-radius: 50%;
	box-shadow: 0px 0px 10px black;
	margin-top: 40px;
	margin-bottom: 20px;
}

.bandeau > h2 {
	display: flex;
	justify-content: center;
	color: #feca07; 
	background: #404040;
	width: 100%;
	padding: 8px 0 5px 0;
	text-transform: uppercase;
	font-size: medium;
	
}

.info {
	color: #404040;
	display: flex;
	width: 80%;
	padding: 10px;
}

.info p {
	padding: 0;
	margin: 0;
}

.info a {
	color: #404040;
	text-decoration: none; 
}

.aboutMe {
	text-align: justify;
}

.hobbies {
	display: flex;
	justify-content: space-between;
}

.hobbies > i {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 50px;
	border: solid 1px #404040;
	border-radius: 50%;

}
 
/**
 * Classes liées au corps
 */
 
.main {
	padding-left: 5%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	width: 95%;
}

.main > h1
 {
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	margin-top: 50px;
	font-weight:  normal;
}

.main > h2 {
	font-size: medium;
}

.titre {
	color: #feca07; 
}

.littleLine {
	height: 2px;
	width: 10%;
	background-color: #feca07
}

.longLine {
	height: 2px;
	width: 100%;
	background-color: #feca07;
	margin-bottom: 30px;
}

.category {
	width: 100%;
}

.categoryTitle {
	display: flex;
	text-transform: uppercase;
	font-weight: bold;
	align-items: center;
	width: 100%;
	padding-top: 5%;
	padding-bottom: 10px;
}

.categoryTitle > i {
	padding: 0 10px 0 10px;
	color: #feca07;
}

.categoryTitle > h3 {
	font-size: medium;
	margin: 0;
	padding: 0;
}

.entree {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
}

.cvDate {
	width: 20%;
	display: flex;
}

.cvDate i {
	color: #feca07;
	padding-right: 10px;
}

.cvInfos {
	width: 80%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-bottom: 20px;
}

.cvInfos > * {
	padding: 0;
	margin: 0;
	padding-bottom: 10px;
}

.cvInfos > h4 {
 	text-transform: uppercase;
}
 
.refInfos {
	display: flex;
	justify-content: space-around;
}


@media only screen and (max-width: 900px) {
	.entree {
	 	flex-direction: column;
 		width: 100%;
	}
	 
	.cvDate {
		width: 100%;
	}
	
	.detailDate {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		width: 100%;
	}
	
	.detailDate > div {
		margin: 0 10px 10px 0;
	}
	
	.detailDate > div:first-child:after {
		content: " - ";
	}
	
	.cvInfos {
	 	width: 95%;
	}
}
 
 
@media only screen and (max-width: 500px) {
	body {
		flex-direction: column;
		align-items: center;
		padding: 0;
		margin: 0;
	}
	
	.detailDate {
		flex-direction: column;
	}
	.detailDate > div:first-child:after {
		content: "";
	}
	
	.bandeau {
		
		width: 100%;
	}
	
	
	.bandeau::before {
		content : "Jane Doe";
		text-transform: uppercase;
		padding: 0;
		margin: 0;
		margin-top: 50px;
		font-weight:  bold;
		font-size: xx-large;
	}
	
	.refInfos {
		flex-direction: column;
	}
	
	.refInfos > div {
		padding-bottom: 10px;
	}
}
 
 
 
 
 
 
 
 
 
 