/*Créer un style uniforme pour toutes les pages*/
html, body {
    width: 100%;
    min-height: 100%;
    margin: 0;
	padding: 0;
    font-family: Arial, sans-serif;
    font-size: 16pt; 
}
	/*En-tête*/
header {
	font-family: 'Poppins',  sans-serif;
	font-size: 30px;
    height: 80px; 
    width: 100%;
    background-color: #fff9f2;
    color: black;
    display: flex;
    align-items: center; /* Centrage vertical */
    justify-content: space-between; /* Espacement entre le titre et la navigation */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    
    /* Dégradé pour ajouter de la profondeur */
    
}

header h1 {
	vertical-align: top;
    line-height: 80px; /* Alignement vertical */
    margin: 0;
	margin-left: 10px;
	margin-right: 10px;
	font-weight: 300;
	font-size: 50px;
	font-family: 'Cookie', sans-serif;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex; /* Alignement horizontal */
}

header nav ul li {
    margin: 0;
    height: 100%;
    width: 180px; /* Augmentation de la largeur */
    text-align: center;
	text-transform: uppercase;
}

header nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 80px; /* Alignement vertical pour correspondre à la hauteur */
    color: black;
    text-decoration: none;
    font-size: 16pt; /* Augmentation de la taille de la police */
}

header nav ul li a:hover {
    background-color: #ffefb0 ;
}

/*Page d'acceuil CV*/
.cv{
	background-color: #faeee0;
	height: auto;
	width: 100%;
	display: flex;
	margin-top: 50px;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	
}
.cv aside {
    order: 1; /* Place l'aside en premier */
}

.cv article {
    order: 2; /* Place l'article en second */
}

body section article{
	float: left;
	width: 70%;
	min-height: 100%;
	box-sizing: border-box;
	padding-left: 100px;
	margin-top: 40px;
	margin-bottom: 40px;
	text-align: justify;
	
}
	/*Style du titre2*/
#name {
	font-size: 40pt;
	font-weight: bold;
	font-family: 'Brittany';
	text-transform: uppercase;
	margin-top: 80px;
	padding-left: 80px;
}
	/*Style du paragraphe1*/
#job {
	font-size: 14pt;
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	text-transform: uppercase; 
	text-align: center;
	padding-top: 8px;
	padding-left: 60px;
	letter-spacing: 1px;
	
}
body section article h3 {
	color: white;
	display: inline-block;
	font-size: 20pt;
	margin-top: 80px;
	margin-left: -30px;
	padding: 15px 30px;
	font-weight: 600;
	background-color: #947968; 
	border: 1px solid black;
	border-radius: 50px;
}


body section article hr{
	border-width: 1px;
	border-style: solid;
	border-color: black;
	margin-top: 60px;
	margin-left: 80px;
}

body section article p{
	font-size: 16pt;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	letter-spacing: 1px;
}

body section article ul li{
	margin: 25px;
	
}
body section article ul li dl dt{
	text-decoration: underline;
	font-weight: bold;
}

body section article ul li dl dt dd{
	text-decoration: none;
	font-size: 18pt;
}
	/*Style du paragraphe2*/
#sentence {
	font-size: 12.5pt;
	font-family: 'Arial', sans-serif;
	font-weight: 300;	
	margin-right: 28px;
	text-align: justify;
}

#solo{
	font-weight: bold;
	list-style-type: none;
}


body section aside{
	background-color: #947968;
	float: right;
	width: 28%;
	height: auto;
	box-sizing: border-box;
	padding: 20px;
	margin-top: 30px;
	border-radius: 8px;
}

.profil{
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: white;
	height: 300px;
	width: 300px;
	border-radius: 50%;
	margin-top: 20px;
	margin-bottom: 50px;
	margin-left: 150px;
	border: 10px solid #947968;
	box-shadow: 6px 4px 6px 1px #29292973;
}
.profil img{
	width: 100%;
	border-radius: 50%;
}

.box-1 {
    position: relative;
    width: 100%; /* Peut être ajusté selon vos besoins */
    max-width: 400px; /* Limite de largeur */
    margin: 0 auto; /* Centrage horizontal */
    padding: 20px;
    background-color: white; /* Couleur de fond */
    border: 2px solid #ddd; /* Bordure légère pour séparer en 2 sections */
    border-radius: 8px; /* Bords arrondis */
}

/* Titre */
	/*création d'un style uniforme pour toutes les icones et leur description*/
.titre {
    background-color: #faeee0;
    padding: 10px;
    color: black;
    text-align: center;
    display: flex;
    flex-direction: column; /* Icône et texte empilés */
    align-items: center; /* Centrer les éléments */
    border-radius: 8px 8px 0 0; /* Bords arrondis en haut */
}

.titre img {
    width: 50px; /* Taille de l'icône */
    margin-bottom: 5px; /* Espacement avec le texte */
}

.p1 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Poppins';
    letter-spacing: 1px;
}

/* Informations de contact */
.contact-info {
    margin-top: 20px;
    color: black;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.contact-info p {
    display: flex; /* Aligner horizontalement les icônes et le texte */
    align-items: center;
    margin-bottom: 20px;
   
}

.contact-info a {
   color: black; 
   text-decoration: none;
}
.contact-info a:hover {
   color: #947968; 
   text-decoration: underline;
}

.icon {
    width: 40px; /* Taille uniforme des icônes */
    height: 40px;
    margin-right: 10px; /* Espacement entre l'icône et le texte */
}

.skills-info{
	margin-top: 20px;
    color: black;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.skills-info p {
    display: flex; /* Aligner horizontalement les icônes et le texte */
    margin-bottom: 20px;
   
}
	
.icon2{
    width: 60px; /* Taille uniforme des icônes */
    height: 60px;
    margin-right: 10px; /* Espacement entre l'icône et le texte */
}



/*Deuxième page*/
	/*Page portfolio*/

.portfolio {
    width: 100%;
    min-height: 100vh; /* Permet d'étirer la page sur toute la hauteur de la fenêtre */
	background-color: #faeee0;
}

/* Visuel de fond avec les images */
.visuel {
    width: 100%;
    height: 100vh; /* Vue pleine hauteur */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

/* Conteneur des images de fond */
.photo-conteneur {
    display: flex;
    width: 100%;
    height: 100%; /* Utilise la hauteur disponible */
    position: relative;
}

.photo-conteneur img {
    width: 33.33%; /* Divise l'espace en 3 colonnes */
    height: 100%; /* Remplir l'espace vertical sans déformation */
    object-fit: cover; /* Assure que les images remplissent l'espace sans être déformées */
}

/* Texte au centre du visuel */
.text {
    position: absolute;
    top: 50%; /* Centrer verticalement */
    left: 50%; /* Centrer horizontalement */
    transform: translate(-50%, -50%); /* Centrer parfaitement */
    background-color: rgba(255, 255, 255, 0.6); /* Fond blanc semi-transparent */
    padding: 20px 40px;
    border-radius: 100px; /* Coins arrondis */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Ombre douce */
    text-align: center;
}

.text h2 {
    font-size: 30pt; /* Taille du texte */
    color: black;
    font-family: "Oi", sans-serif;
	font-weight: 400;
	font-style: normal;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text a {
	text-decoration: none;
	color: black;
}

.text a:hover {
	text-decoration: underline;
}

/* Section photographie */
.photographie {
    background-color: #dbcbbb; /* Couleur de fond */
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: flex-start; /* Espacement entre les photos */
    align-items: center;
    margin-top: 30px;
}

.photographie div {
    width: 30%; /* Chaque photo occupe 30% de l'espace */
	padding: 10px;
    box-sizing: border-box;
}
.text1 {
	margin-top: -45%;
	position: absolute;
	margin-left: 20px;
	
}
.text1 h2 {
	font-size: 26pt; /* Taille du texte */
    color: black;
    font-family: "Oi", sans-serif;
	font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.photographie img {
    width: 100%; /* S'adapte à la taille de son conteneur */
    height: auto;
    border-radius: 10px;
	margin-top: 60px; /* Ajoute un espace de 60px au-dessus de chaque image */
    margin-right: 10px; /*mettre un espacement entre les images*/
	margin-left: 10px;
}
/* Section peinture */
.paint {
	background-color: #947968;
	padding: 30px 0;
	margin-top: 30px;
	display: flex;
	justify-content: space-around;
	
}
.paint img{
	width: 50%; /* S'adapte à la taille de son conteneur */
    height: 40%; /*avoir la taille normale de la photo du milieu*/
    border-radius: 10px;
	margin-top: 70px;
	margin-top: 60px; /* Ajoute un espace de 60px au-dessus de chaque image */
    margin-right: 10px; /*mettre un espacement entre les images*/
	margin-left: 10px;
}

.text2 {
   margin-top: 20px; /*mettre un espacement entre le texte et la div paint*/
	position: absolute;
	margin-left: 20px;
   
}
.text2 h2 {
	font-size: 26pt; /* Taille du texte */
    color: black;
    font-family: "Oi", sans-serif;
	font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Section photoshop */
.photoshop {
	background-color:  #dbcbbb;
	padding: 30px 0;
	margin-top: 30px;
	display: flex;
	justify-content: space-around;
	
}
.photoshop img{
	width: 600px; /* S'adapte à la taille de son conteneur */
    height: 40%; /*avoir la taille normale de la photo du milieu*/
    border-radius: 10px;
	margin-top: 70px;
	margin-top: 60px; /* Ajoute un espace de 60px au-dessus de chaque image */
    margin-right: 10px; /*mettre un espacement entre les images*/
	margin-left: 10px;
	
	
}

.text3 {
   margin-top: 20px; /*mettre un espacement entre le texte et la div paint*/
	position: absolute;
	margin-left: 20px;
   
}
.text3 h2 {
	font-size: 26pt; /* Taille du texte */
    color: black;
    font-family: "Oi", sans-serif;
	font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section site web */
.website {
	background-color: #947968;
	padding: 30px 0;
	margin-top: 30px;
	display: flex;
	justify-content: space-around;
	
}
.website img{
	width: 600px; /* S'adapte à la taille de son conteneur */
    height: 40%; /*avoir la taille normale de la photo du milieu*/
    border-radius: 10px;
	margin-top: 70px;
	margin-top: 60px; /* Ajoute un espace de 60px au-dessus de chaque image */
    margin-right: 10px; /*mettre un espacement entre les images*/
	margin-left: 10px;
	
	
}

.text4 {
   margin-top: 20px; /*mettre un espacement entre le texte et la div paint*/
	position: absolute;
	margin-left: 20px;
   
}
.text4 h2 {
	font-size: 26pt; /* Taille du texte */
    color: black;
    font-family: "Oi", sans-serif;
	font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section marketing */
.marketing{
	background-color: #dbcbbb;
	padding: 30px 0;
	margin-top: 30px;
	display: flex;
	justify-content: space-around;
	
}

	
.marketing img{
	width: 600px; /* S'adapte à la taille de son conteneur */
    height: 40%; /*avoir la taille normale de la photo du milieu*/
    border-radius: 10px;
	margin-top: 87px; /* Ajoute un espace de 86px au-dessus de chaque image */
    margin-right: 10px; /*mettre un espacement entre les images*/
	margin-left: 10px;
}
.text5 {
   margin-top: 20px; /*mettre un espacement entre le texte et la div paint*/
	position: absolute;
	margin-left: 20px;
   
}
.text5 h2 {
	font-size: 26pt; /* Taille du texte */
    color: black;
    font-family: "Oi", sans-serif;
	font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.text5 p {
	margin-top: -29px;
}


/*troisième page*/

.reel div{
	background-color: #947968;
	margin-top: -80px;
	margin-left: 50px;
	margin-right: 50px;
	height: auto;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
}
.reel div video {
	width: 850px;
	height: auto;
	margin-top: 10px;
	display: block;
	border-radius: 20px;
}
.reel h2 {
	font-size: 100px;
	font-family: 'Cookie', sans-serif;
	font-weight: 200;
	text-align: center;
	margin-top: 30px;
}

.description {
    display: flex; /* Active Flexbox */
    justify-content: space-between; /* Espace entre les éléments */
    align-items: flex-start; /* Aligne les éléments en haut */
    margin-top: 30px;
	margin-right: 10px;
    margin-bottom: 20px; /* Ajoute de l'espace avant le footer */
    flex-wrap: wrap; /* S'assure que les éléments restent dans la section même sur petit écran */
	background-color: white;
}

.description aside{
	float: right;
	box-sizing: border-box;
	margin-top: 130px;
	margin-left: 10px;
	width: 50%;
	
}
.description aside h2{
	font-size: 25pt; /* Taille du texte */
    color: white;
    font-family: "Oi", sans-serif;
	font-weight: 100;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.description aside p{
	font-size: 16pt;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	letter-spacing: 1px;
	color: white;
}


/*Quatrième page*/
.myjob {
    display: flex; /* Active Flexbox */
    justify-content: space-between; /* Espace entre les éléments */
    align-items: flex-start; /* Aligne les éléments en haut */
    margin-top: 30px;
	margin-right: 10px;
	margin-left: 10px;
    margin-bottom: 20px; /* Ajoute de l'espace avant le footer */
    flex-wrap: wrap; /* S'assure que les éléments restent dans la section même sur petit écran */
}

.graphist img {
	float: left;
	box-sizing: border-box;	
}

.graphist h2 {
	font-size: 25pt; /* Taille du texte */
    color: black;
    font-family: "Oi", sans-serif;
	font-weight: 100;
    margin-left: 50%;
	margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.graphist P {
	font-size: 18pt; /* Taille du texte */
    color: black;
    font-family: "Arial", sans-serif;
    margin-left: 50%;
	text-align: justify;
}


.webdesigner img {
	float: right;
	box-sizing: border-box;	
	margin-right: 59px; /*Aligner l'image avec le texte au-dessus et en-dessous*/
	margin-top: 20px;
}

.webdesigner h2 {
	font-size: 25pt; /* Taille du texte */
    color: black;
    font-family: "Oi", sans-serif;
	font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.webdesigner p {
	font-size: 18pt; /* Taille du texte */
    color: black;
    font-family: "Arial", sans-serif;
	text-align: justify;
	width: 45%;
}

.gamedesigner img {
	float: left;
	box-sizing: border-box;	
	margin-top: 28px; /*Descendre le contenu de l'image*/
}

.gamedesigner h2 {
	font-size: 25pt; /* Taille du texte */
    color: black;
    font-family: "Oi", sans-serif;
	font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
	margin-left: 50%;
}

.gamedesigner P {
	font-size: 18pt; /* Taille du texte */
    color: black;
    font-family: "Arial", sans-serif;
	margin-left: 50%;
	text-align: justify;
}

.myjob{
	margin-top: 50px;
	
}
.myjob img {
	width: 45%;
	
	
}



/*Pied de page*/
footer{
	left: 0;
	bottom: 0;
	right: 0;
	box-sizing: border-box;
	height: 320px;
	background-color: #fff9f2;
	color: black;
	position: relative;
	display: flex;
	flex-direction: row;
	padding: 10px;
	margin-top: 50px;
	box-shadow: -3px -5px 5px #d1d1d1 ;
}

.column {
	height: 100%;
	width: 30%;
	text-align: center;
	padding: 10px;
}

.column h4{
	color: black;
	margin-bottom: 25px;
	font-size: 22px;
	position: relative;	
	text-transform: uppercase;
	
}

.column ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.column ul li{
	margin: 10px 0; /*Gérer l'espacement entre les éléments de la liste*/
	
}

.column ul li a{
	text-decoration: none;
	color: black;
}

.column ul a:hover{
	text-decoration: underline;
	color: #947968;
}

.icon3{
	width: 20px;
	height: 20px;
	margin-right: 8px;
	vertical-align: middle;
}

.column form {
	display: flex; /*aligner horizentalement le formulaire*/
	align-items: center;
	flex-direction: column;/*aligner verticalement le formulaire*/
	margin-top: 0px; 
}
.column label {
	margin-bottom: 10px;
	font-size: 17px;
}

.input{
	width: 90%;
	padding: 10px;
	border: 2px solid black;
	border-radius: 5px;
	margin-bottom: -40px;/*créer un espacement entre chaque éléments du formulaire*/
}
.submit {
	background-color: black;
	color: white;
	padding: 10px 15px;
}

.submit:hover {
	background-color: #947968;
	color: black;
}

/*créer une forme pour la reponse du serveur*/
.reponse {
	width: 100%;
	height: auto;
	background-color: #947968;
	border: 2px solid black;
	border-radius: 8px;
	margin-top: 30px;
	margin-left: 30px;
	margin-right: 30px;
	text-align: center;
	font-family: "Arial", sans-serif;
	font-size: 16px;
	color: black;
	
	
	
}




/*Adaptation du style à un ordi de 1024px min*/
@media(min-width:1024px){
	header nav ul {
			flex-wrap: wrap; /* Les éléments du menu s'empilent si nécessaire */
		}

	.cv {
		align-items: center; /* Centrage */
	}

	.cv aside {
		width: 30%; /* Prend toute la largeur */
	}

	.cv article {
		width: 75%;
	}

	footer {
		height: auto; /* Ajuste la hauteur automatiquement */
		text-align: center; /* Centrer le texte */
	}

	.column {
		width: 50%; /* Chaque colonne prend presque toute la largeur */
		margin-bottom: 20px; /* Ajoute de l'espace entre les colonnes */
	}
		
	.profil {
		margin-left: 330px;
		
	}	
	
	.graphist {
	margin-top: 40px;
	margin-right: 50px;
		
}

.graphist img {
	margin-left: 40px;
}

.graphist h2 {
	font-size: 30pt; /* Taille du texte */
	margin-top: 100px;
   
}

.graphist P {
	font-size: 30pt; /* Taille du texte */
    margin-right: 40px;
	margin-left: 40px;
}

.webdesigner {
	margin-top: 50px;
	margin-right: 40px;
		
}

.webdesigner h2 {
	font-size: 30pt; /* Taille du texte */
    margin-left: 40px;
	margin-top: 200px;
}

.webdesigner p {
	font-size: 30pt; /* Taille du texte */
	margin-left: 40px;
	
}

.gamedesigner {
	margin-top: 50px;
	margin-right: 50px;
		
}

.gamedesigner img {
	margin-left: 40px;
}

.gamedesigner h2 {
	font-size: 30pt; /* Taille du texte */
}

.gamedesigner P {
	font-size: 30pt; /* Taille du texte */
	margin-left: 20px;
}

.description aside {
	margin-right: 50px;
}

.video {
	margin-left: 350px;
}
	

	
}

















/*Cette partie est adaptée pour les ordi portables*/
@media (min-width: 768px) {
	/*Créer un style uniforme pour toutes les pages*/
html, body {
    width: 100%;
    min-height: 100%;
    margin: 0;
	padding: 0;
    font-family: Arial, sans-serif;
    font-size: 16pt; 
}
	/*En-tête*/
header {
	font-family: 'Poppins',  sans-serif;
	font-size: 30px;
    height: 80px; 
    width: 100%;
    background-color: #fff9f2;
    color: black;
    display: flex;
    align-items: center; /* Centrage vertical */
    justify-content: space-between; /* Espacement entre le titre et la navigation */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    
    /* Dégradé pour ajouter de la profondeur */
    
}

header h1 {
	vertical-align: top;
    line-height: 80px; /* Alignement vertical */
    margin: 0;
	margin-left: 10px;
	margin-right: 10px;
	font-weight: 300;
	font-size: 50px;
	font-family: 'Cookie', sans-serif;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex; /* Alignement horizontal */
}

header nav ul li {
    margin: 0;
    height: 100%;
    width: 180px; /* Augmentation de la largeur */
    text-align: center;
	text-transform: uppercase;
}

header nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 80px; /* Alignement vertical pour correspondre à la hauteur */
    color: black;
    text-decoration: none;
    font-size: 16pt; /* Augmentation de la taille de la police */
}

header nav ul li a:hover {
    background-color: #ffefb0 ;
}

/*Page d'acceuil CV*/
.cv{
	background-color: #faeee0;
	height: auto;
	width: 100%;
	display: flex;
	margin-top: 50px;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	
}
.cv aside {
    order: 1; /* Place l'aside en premier */
}

.cv article {
    order: 2; /* Place l'article en second */
}

body section article{
	float: left;
	width: 70%;
	min-height: 100%;
	box-sizing: border-box;
	padding-left: 100px;
	margin-top: 40px;
	margin-bottom: 40px;
	text-align: justify;
	
}
	/*Style du titre2*/
#name {
	font-size: 40pt;
	font-weight: bold;
	font-family: 'Brittany';
	text-transform: uppercase;
	margin-top: 80px;
	padding-left: 80px;
}
	/*Style du paragraphe1*/
#job {
	font-size: 14pt;
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	text-transform: uppercase; 
	text-align: center;
	padding-top: 8px;
	padding-left: 60px;
	letter-spacing: 1px;
	
}
body section article h3 {
	color: white;
	display: inline-block;
	font-size: 20pt;
	margin-top: 80px;
	margin-left: -30px;
	padding: 15px 30px;
	font-weight: 600;
	background-color: #947968; 
	border: 1px solid black;
	border-radius: 50px;
}


body section article hr{
	border-width: 1px;
	border-style: solid;
	border-color: black;
	margin-top: 60px;
	margin-left: 80px;
}

body section article p{
	font-size: 16pt;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	letter-spacing: 1px;
}

body section article ul li{
	margin: 25px;
	
}
body section article ul li dl dt{
	text-decoration: underline;
	font-weight: bold;
}

body section article ul li dl dt dd{
	text-decoration: none;
	font-size: 18pt;
}
	/*Style du paragraphe2*/
#sentence {
	font-size: 12.5pt;
	font-family: 'Arial', sans-serif;
	font-weight: 300;	
	margin-right: 28px;
	text-align: justify;
}

#solo{
	font-weight: bold;
	list-style-type: none;
}


body section aside{
	background-color: #947968;
	float: right;
	width: 28%;
	height: auto;
	box-sizing: border-box;
	padding: 20px;
	margin-top: 30px;
	border-radius: 8px;
}

.profil{
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: white;
	height: 300px;
	width: 300px;
	border-radius: 50%;
	margin-top: 20px;
	margin-bottom: 50px;
	margin-left: 150px;
	border: 10px solid #947968;
	box-shadow: 6px 4px 6px 1px #29292973;
}
.profil img{
	width: 100%;
	border-radius: 50%;
}

.box-1 {
    position: relative;
    width: 100%; /* Peut être ajusté selon vos besoins */
    max-width: 400px; /* Limite de largeur */
    margin: 0 auto; /* Centrage horizontal */
    padding: 20px;
    background-color: white; /* Couleur de fond */
    border: 2px solid #ddd; /* Bordure légère pour séparer en 2 sections */
    border-radius: 8px; /* Bords arrondis */
}

/* Titre */
	/*création d'un style uniforme pour toutes les icones et leur description*/
.titre {
    background-color: #faeee0;
    padding: 10px;
    color: black;
    text-align: center;
    display: flex;
    flex-direction: column; /* Icône et texte empilés */
    align-items: center; /* Centrer les éléments */
    border-radius: 8px 8px 0 0; /* Bords arrondis en haut */
}

.titre img {
    width: 50px; /* Taille de l'icône */
    margin-bottom: 5px; /* Espacement avec le texte */
}

.p1 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Poppins';
    letter-spacing: 1px;
}

/* Informations de contact */
.contact-info {
    margin-top: 20px;
    color: black;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.contact-info p {
    display: flex; /* Aligner horizontalement les icônes et le texte */
    align-items: center;
    margin-bottom: 20px;
   
}

.contact-info a {
   color: black; 
   text-decoration: none;
}
.contact-info a:hover {
   color: #947968; 
   text-decoration: underline;
}

.icon {
    width: 40px; /* Taille uniforme des icônes */
    height: 40px;
    margin-right: 10px; /* Espacement entre l'icône et le texte */
}

.skills-info{
	margin-top: 20px;
    color: black;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.skills-info p {
    display: flex; /* Aligner horizontalement les icônes et le texte */
    margin-bottom: 20px;
   
}
	
.icon2{
    width: 60px; /* Taille uniforme des icônes */
    height: 60px;
    margin-right: 10px; /* Espacement entre l'icône et le texte */
}



/*Deuxième page*/
	/*Page portfolio*/

.portfolio {
    width: 100%;
    min-height: 100vh; /* Permet d'étirer la page sur toute la hauteur de la fenêtre */
	background-color: #faeee0;
}

.marketing img{
	margin-top: 87px; /* Ajoute un espace de 86px au-dessus de chaque image */
    margin-right: 10px; /*mettre un espacement entre les images*/
	margin-left: 10px;
}




/*troisième page*/

.video {
	margin-left: 30px;
}



/*Quatrième page*/
.myjob {
    display: flex; /* Active Flexbox */
    justify-content: space-between; /* Espace entre les éléments */
    align-items: flex-start; /* Aligne les éléments en haut */
    margin-top: 30px;
	margin-right: 10px;
	margin-left: 10px;
    margin-bottom: 20px; /* Ajoute de l'espace avant le footer */
    flex-wrap: wrap; /* S'assure que les éléments restent dans la section même sur petit écran */
}

.graphist img {
	float: left;
	box-sizing: border-box;	
}

.graphist h2 {
	font-size: 25pt; /* Taille du texte */
    color: black;
    font-family: "Oi", sans-serif;
	font-weight: 100;
    margin-left: 50%;
	margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.graphist P {
	font-size: 18pt; /* Taille du texte */
    color: black;
    font-family: "Arial", sans-serif;
    margin-left: 50%;
	text-align: justify;
	margin-right: 20px;
	
}


.webdesigner img {
	float: right;
	box-sizing: border-box;	
	margin-right: 59px; /*Aligner l'image avec le texte au-dessus et en-dessous*/
	margin-top: 20px;
}

.webdesigner h2 {
	font-size: 25pt; /* Taille du texte */
	margin-top: -8px;
}

.webdesigner p {
	font-size: 18pt; /* Taille du texte */
}

.gamedesigner img {
	float: left;
	box-sizing: border-box;	
	margin-top: 28px; /*Descendre le contenu de l'image*/
}

.gamedesigner h2 {
	font-size: 25pt; /* Taille du texte */
    color: black;
    font-family: "Oi", sans-serif;
	font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
	margin-left: 50%;
}

.gamedesigner P {
	font-size: 18pt; /* Taille du texte */
    color: black;
    font-family: "Arial", sans-serif;
	margin-left: 50%;
	text-align: justify;
}

.myjob{
	margin-top: 50px;
	
}
.myjob img {
	width: 45%;
	
	
}





.column {
	height: 100%;
	width: 30%;
	text-align: center;
	padding: 10px;
}

.column h4{
	color: black;
	margin-bottom: 25px;
	font-size: 22px;
	position: relative;	
	text-transform: uppercase;
	
}

.column ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.column ul li{
	margin: 10px 0; /*Gérer l'espacement entre les éléments de la liste*/
	
}

.column ul li a{
	text-decoration: none;
	color: black;
}

.column ul a:hover{
	text-decoration: underline;
	color: #947968;
}

.icon3{
	width: 20px;
	height: 20px;
	margin-right: 8px;
	vertical-align: middle;
}

.column form {
	display: flex; /*aligner horizentalement le formulaire*/
	align-items: center;
	flex-direction: column;/*aligner verticalement le formulaire*/
	margin-top: 0px; 
}
.column label {
	margin-bottom: 10px;
	font-size: 17px;
}

.input{
	width: 90%;
	padding: 10px;
	border: 2px solid black;
	border-radius: 5px;
	margin-bottom: -40px;/*créer un espacement entre chaque éléments du formulaire*/
}
.submit {
	background-color: black;
	color: white;
	padding: 10px 15px;
}

.submit:hover {
	background-color: #947968;
	color: black;
}

/*créer une forme pour la reponse du serveur*/
.reponse {
	width: 100%;
	height: auto;
	background-color: #947968;
	border: 2px solid black;
	border-radius: 8px;
	margin-top: 30px;
	margin-left: 30px;
	margin-right: 30px;
	text-align: center;
	font-family: "Arial", sans-serif;
	font-size: 16px;
	color: black;
	
	
	
}
}





