body{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  font-family:  sans-serif;

}
.wrap{
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}
header{
  order: 0;
  flex: 0 1 auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  background: linear-gradient(to bottom,crimson 26%,  rgba(255,5,9,0)  26%, rgba(255,5,9,0) 75%,rgba(255,0,4,0) 75%);
  overflow: hidden;
  z-index: 10;
  
}
header .cercle{
  order: 0;
  flex: 0 1 auto;
  align-self: center;
  padding: 20px;
  padding-bottom: 0px;
  padding-top: 0px;
 
}
header .cercle img{
 border-radius: 50%;
 animation-name: rolling;
 animation-duration: 1.5s;
 animation-timing-function: ease-in-out;
 background-color: crimson;
}
header article{
  order: 0;
  flex: 0 1 auto;
  align-self: stretch;
  padding: 20px;
  text-align: right;
  padding-bottom: 0px;
  padding-top: 0px;

}
.mainwrap{
  order: 0;
  flex: 0 1 auto;
  align-self: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: stretch;
  overflow: hidden;
}
aside{
  order: 0;
  flex: 0 1 auto;
  align-self: stretch;
  padding: 20px;
  padding-bottom: 0px;
  padding-top: 0px;
}
main{
  order: 0;
  flex: 1 1 auto;
  align-self: stretch;
  padding: 20px;
  padding-bottom: 0px;
  padding-top: 0px;
}

h1{
  text-transform: capitalize;
}
h2{
  text-transform: capitalize;
  border-bottom: solid crimson 4px;
  margin: 0;
}
h2::first-letter{
  font-family: 'Permanent Marker', cursive;
  font-size: 40px;
  color: crimson;
  padding-right: 2px
}
h3{
  text-transform: capitalize;
}
aside p{
  max-width: 200px;
}
.information article{
  padding-top: 20px;
}
ul.place-year {
  max-width: 44em;
  overflow-x: hidden;
  list-style: none;
  margin-bottom: 0px;
}

ul.place-year li:before {
  float: left;
  width: 0;
  white-space: nowrap;
  content: ;
}

ul.place-year span:first-child {
  padding-right: 0.33em;
  font-weight: bold;
  text-transform: capitalize;
}

ul.place-year  li span:last-of-type {
  float: right;
  padding-left: 0.33em;
  font-weight: bold;
  font-style: italic;
}
ul.place-year p{
  margin: 0px
}
.underline {
  border: 2px solid transparent;
}

.underline::after {
  width: 0%;
  height: 2px;
  display: block;
  background-color: #000;
  content: " ";
  position: absolute;
  top: 15px;
  left: 50%;
  transition: left 0.2s cubic-bezier(0.215, 0.61, 0.355, 1), width 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.underline:hover::after,.underline:active::after {
  width: 100%;
  height: 2px;
  display: block;
  background-color: #000;
  content: " ";
  position: absolute;
  top: 15px;
  left: -3px;
}
.link {
  text-decoration: none;
  color: #000;
  letter-spacing: 0.1em;
  position: relative;
}
.langues ul{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
    list-style-type: none;
}
.langues li{
    order: 0;
    flex: 1 1 auto;
    align-self: stretch;
    text-align: center;

}

#banner,
#name,
#content{
  opacity: 0;
}


#banner.fadeInLeft,
#name.fadeInUp,
#content.fadeInDown{
  opacity: 1;
}

#banner.fadeInLeft {
  animation-duration: 0.5s !important;
  animation-delay: 0.5s !important;
}

#name.fadeInUp, #content.fadeInUp  {
  animation-duration: 0.6s !important;
  animation-delay: 0.6s !important;
}

@keyframes rolling {
    0%   {transform: rotate(-1000deg);}
    80%   {transform: rotate(10deg);}
    100% {transform: rotate(0deg);}
}