/* GENERAL */
*{
    margin: 0;
    box-sizing: border-box;
  }
  
  body{
    font-family: Roboto;
    font-weight: 300;
    font-size: .9rem;
    line-height: 1.5;
  }
  
  a{
    text-decoration: none;
    color: #d21f1f;
  }
  
  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;
  }

h3 {
  font-size: small
}
  
  .text-red{
    color: #d13050;
  }
  
  .text-darkred{
    color: #600000;
  }
  
  .text-uppercase{
    text-transform: uppercase; 
  }
  
  .icon{
    margin-right: .5rem;
  }
  
  .cv-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "left-column right-column right-column";
    width: 1200px;
    height: auto;
    margin: 15px auto;
    box-shadow: 0 21px 32px rgba(0,0,0,0.12), 0 5px 12px rgba(0,0,0,0.24);
    animation: bounceIn;
    animation-duration: 1s; 
  }
  
  .section{
    margin-bottom: 1.5rem;
  }
  
  /* GAUCHE ONLLYYY */
  .left-column{
    grid-area: left-column;
    padding: 50px;
    background-color: #ca1818;
    color: white;
  }
  
  .portait{
    border-radius: 20%;
    max-width: 150px;
    margin: auto;
    display: block;
    margin-bottom: 35px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
  
  .skills{
    list-style-type: none;
    padding: 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: 0 0 1rem;
  }
  
  /* droite */
  .right-column{
    grid-area: right-column;
    display: grid;
    grid-template-rows: 250px 1fr;
    grid-template-areas: 
      "header"
      "content";
  }
  
  /* header (gris) */
  .header{
    grid-area: header;
    height: 300px;
    padding: 50px;
    background-color: #F2F2F2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: auto;
  }
  
  .infos{
    columns: 2;
    list-style-type: none;
    padding: 0;
    margin-top: 2px;
    margin-bottom: 1px;
  }
  
  /* contenu */
  .content{
    grid-area: content;
    padding: 50px;
  }
  
  .experience-list{
    list-style-type: circle;
  }
  .evolution {
    margin-bottom: 8px;
  }