html{scroll-behavior: smooth;
}

body {
	background-color: #e3eaf9;
	margin: 0;
	font-family: 'Piazzolla', serif;
}



header, footer {
	background: rgb(238,174,202);
	background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
	padding: 10px;
	text-align: center;
	color: #ffffff
}


h1 {
	color: #DE067C;
	text-align: center;
	text-transform: uppercase;
	font-size: 40px;
}

h2 {
	color: #1D9ED5;
	text-transform: uppercase;
	text-align: center;
}
h3 {
	color : #c63ada;
	text-transform: uppercase;
}
h4{
	color: #1e88e5;
	font-size: 40px;
	font-family: 'Dancing Script', cursive;
	text-align: center;
}

h5{
	color: #1e88e5;
	font-size: 18px;
	text-align: center;

}

p {
	color: #1e88e5;
	font-size: 16px;
	text-align: justify;
}

h2 {
  animation-duration: 3s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%;
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}

h4 {
  animation: 3s infinite fadeInOut;
}

strong {
	color: orange;
}

span {
	color: #DE067C;
	font-weight:bolder;
	font-size: 18px;
}



#enseignements,#experiences-professionnelles,#bio,#savoirEtre,#competences {
	background-color: #ffffff;
	padding: 20px;
	margin-bottom: 20px;
	width: 80%;
	margin: 20px auto;
	box-shadow: 7px 7px 10px #b39bf2;
}

#savoirEtre,#competences {
	width: 60%;
}



#bio img {
	width: 200px; height: 200px;
	border-radius:20%;
	box-shadow: 7px 7px 10px #b39bf2;
}
#bio {
	display: flex;
	align-items: center;
}
#bio p {
margin-left: 20px;
}

.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
.formation{
}
.barre {
width: 200px;
height: 10px;
background-color: #e3eaf9;
border-radius: 10px;
}
.barreRemplissage{
width: 100%;
height: 100%;
background-color: #DE067C;
border-radius: 10px;
}
.fade-in {
  animation: fadeIn ease 8s;
}
@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
nav ul{
	list-style: none;
	display: flex;
	background-color: #DE067C;
	padding: 20px;
	justify-content: center;
}

nav a{
	color:#ffffff;
	text-decoration: none;
	text-transform: uppercase;
	padding: 20px;
}
nav a:hover {
background-color:#fff;
color: #DE067C
}
