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: 20px;
  overflow: hidden;
}
header{
  order: 0;
  flex: 0 1 auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  background: url(../img/mars_logo.png), linear-gradient(to bottom, rgba(255,212,51,0) 35%,goldenrod 35%,goldenrod 43%,rgba(44,120,42,1) 43%,rgba(44,120,42,1) 78%,rgba(44,120,42,0) 78%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 4%;
  overflow: hidden;
  z-index: 10;
  margin-bottom: 10px;
  
}
header .cercle{
  order: 0;
  flex: 0 1 auto;
  align-self: stretch;
  padding: 20px;
  padding-bottom: 0px;
  padding-top: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
}
header .cercle div{
  order: 0;
  flex: 0 1 auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}
header .cercle img{
 animation-name: rolling;
 animation-duration: 1.5s;
 animation-timing-function: ease-in-out;
 width: 50%;
}
header article{
  order: 0;
  flex: 0 1 auto;
  padding: 20px;
  text-align: center;
  padding-bottom: 0px;
  padding-top: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
}
header h3 {
  color: white;
}
header article section{
    order: 0;
    flex: 1 1 auto;
    align-self: stretch;
}
.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: solid rgba(44,120,42,1) 4px;
  margin: 0;
  text-align: center;
  background-color: goldenrod;
  color: white;

}
h3{
  text-transform: capitalize;
}
aside p{
  max-width: 200px;
}
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;
}

#banner,
#name,
#content{
  opacity: 0;
}


#banner.fadeInLeft,
#name.fadeInUp,
#conten.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);}
}