html,body {
	width:100%;
	min-height:100%;
	margin:0;
	font-family:Arial, sans-serif;
	font-size:12pt;
	text-align:center;
}
/* entete */
.header_main header{
    position: sticky;
    top: 0; /* L'en-tête reste en haut */
    left: 0;
    width: 100%;
    display: flex; /* Utilisation de Flexbox pour l'alignement */
    justify-content: space-between;  /* Espacement entre les éléments du header */
    align-items: center;/* Centrage vertical des éléments */
    text-transform: uppercase;
    background-color: #267dcf; /* cadetblue; */
    color:#FFF;
}

.header_main header p{
    position: sticky; /* Le paragraphe reste fixe quand on fait défiler */
    height:40px;
    background-color: #267dcf; /* cadetblue; */
    color:#FFF;
}
.header_main header h1{
    font-size:30px;
    line-height:40px;
    text-transform:uppercase;
    margin:0;/* Suppression des marges par défaut */
    margin-left:10px;
    margin-right:10px;
    display:inline-block;
    vertical-align: top;
}

/* Menu */
nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    background-color: #267dcf; /* cadetblue; */
    color:#FFF;
}

.menu h1 {
    text-transform: uppercase;
	font-size: xx-large;
    padding-left: 50px;/* Décalage à gauche */
}

.menu ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center; /* Centrer verticalement les éléments */
}

.menu li {
    list-style-type: none;/* Supprimer les puces de la liste */
}

.menu a {
    padding: 15px;
    color: #f1f1f1;
    text-decoration: none;
    font-weight: normal;
    transition: font-weight 0.3s ease;/* Animation douce lors du changement de poids de la police */
}

.menu a:hover {
    font-weight: bold;/* Mettre le texte en gras au survol */
}


/* Body */
body {
	font-family:serif;
	font-size:100%;
	background-color:beige;

}

.base ul {
		font-size:80%;
		width:800px;
		text-align:center;
		background-color:white;
		background-attachment:fixed;
		border-right:5px;
		border-color:Violet;
		border-style:ridge;
		
}

/* Colonne Gauche */
aside {
	max-width: 20%;
    float: left;
    padding: 12px;/* Espacement interne */
    color: #f1f1f1;
    background: #267dcf;
	/* linear-gradient(120deg, #132438, #18293E); */
}
main{
	font-size: 25px;
}
/* pied de page*/
footer {
    bottom: 0;/* Positionner le pied de page en bas */
    background-color: #267dcf;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5px;
    width: 100%;
}

footer ul {
    list-style-type: none;
}

footer a {
    color:#5EFFEC ;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.style_centrer {
	text-align: center;
}

.style_centrer_rouge {
	text-align: center; 
	color: red;
}

/* Contact Me */
#contact_me {
	text-align:left;
	color: white; 
}

#contact_me h2 {
	text-align:center;
	color: white; 
	font-weight: bold; 
}

#contact_me p {
	color: white;
}

.contact_me_important {
	color: white;
}

/* Style Education */
#education {
	text-align:left;
	color: white; 
}

#education h2 {
	text-align:center;
	color: white; 
	font-weight: bold; 
}

#education p {
	color: white;
}

/* Style skill */
#hardskill {
	text-align:left;
	color: white; 
}

#hardskill h2 {
	text-align:center;
	color: white; 
	font-weight: bold; 
}

#hardskill p {
	color: white;
}

/* Style softskills */
#softskills {
	text-align:left;
	color: white; 
}

#softskills h2 {
	text-align:center;
	color: white; 
	font-weight: bold; 
}

#softskills p {
	color: white;
}

/* Style languages */
#languages {
	text-align:left;
	color: white; 
}

#languages h2 {
	text-align:center;
	color: white; 
	font-weight: bold; 
}

#languages p {
	color: white;
}


/* Skill Info */
.skill_info {
	padding: 50px;
	margin: auto;
	font-size: xx-large;
}
/* Skill Info pour les images*/
.skill_info_image {
	margin-right:150px;
	padding: 50px;
	font-size: xx-large;
}



/* youtube */
#youtube {
    align-items: center; /* Centrer les éléments à l'intérieur */
}

/* Formulaire */
#form_surname {
	width: 40%;
	box-sizing: border-box;
	border-radius: 4px; /* Coins arrondis */
	font-size: 16px;
}

#form_name {
	width: 40%;
	box-sizing: border-box;
	border-radius: 4px; /* Coins arrondis */
	font-size: 16px;
}

#form_message {
	width: 50%;
	height: 150px;
	padding: 12px 20px;
	box-sizing: border-box;  /* Inclure padding et border dans la largeur totale */
	border: 2px solid #ccc;
	border-radius: 4px;
	background-color: #f8f8f8;
	font-size: 16px;
	resize: none; /* Désactiver la possibilité de redimensionner */
}

#form_submit {
	width: 50%;
	padding: 12px 20px;
	box-sizing: border-box;
	border-radius: 4px;
	font-size: 16px;
}