*{
  margin: 0;
  box-sizing: border-box;
}

body{
  font-family: Roboto;
  font-weight: 300;
  font-size: .9rem;
  line-height: 1.5;
}

.export-btn{
  z-index: 1;
  position: absolute;
  right: 20px;
  top: 20px;
}  

a{
  text-decoration: none;
  color: #4472C4;
}

a:hover{
  text-decoration: underline;
}

p{
  margin: 0 0 1rem;
}

h1{
  margin: 0 0 1rem;
  font-size: 2.5rem;
  margin-bottom: .5rem;
}

h2{
  margin: 0 0 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text{
  color: #da7f00;
}

.text-dark{
  color: #000000;
}

.text-linkedin{
  color: #0077B5;
}

.text-uppercase{
  text-transform: uppercase; 
}

.icon{
  margin-right: .5rem;
}

.cv-container{
  display: flex; 
  flex-direction: column; 
  width: 1200px;
  margin: 100px auto;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

@media (min-width: 768px) {
  .cv-container{
    flex-direction: row;
    margin-top: 10px;
  }

  .left-column{
    flex: 2; /* Occupe 3/7 de l'espace total */
  }

  .right-column{
    flex: 3; /* Occupe 4/7 de l'espace total */
  }
}

@media (max-width: 767px) {
  .cv-container {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }
  .right-column {
    order: 0;
    width: 100%;
  }
  .left-column {
    order: 1; 
  }
}

.section{
  margin-bottom: 1.5rem;
}

.left-column{
  grid-area: left-column;
  padding: 30px;
  background-color: #da7f00 ;
  color: #000000;
}

.portait{
  border-radius: 50%;
  max-width: 150px;
  margin: auto;
  display: block;
  margin-bottom: 50px;
}

.skills{
  list-style-type: none;
  padding: 0;
  letter-spacing: 1px;
  margin: 0 0 1rem;
  font-size: .9rem;
  line-height: 1.2;
}


.right-column{
  display: flex;
  flex-direction: column; 
}

.header{
  grid-area: header;
  padding: 50px;
  background-color: #F2F2F2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.infos{
  columns: 2;
  list-style-type: none;
  padding: 0;
}

.content{
  grid-area: content;
  padding: 40px;
}

.experience-list{
  list-style-type: circle;
}
