/* GENERAL */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


  body{
    font-family: Roboto;
    font-weight: 300;
    font-size: .9rem;
    line-height: 1.5;
    flex-wrap: wrap;
  }
  
.bouton{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: none;
    margin: 10px 10px;
  }
  .imprimer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 120px;
    border-radius: 30px;
    background: linear-gradient(145deg, #2e3cbf, #2636a6);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3), -4px -4px 8px rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
    margin-left: 10px;
}

.imprimer:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.4), -6px -6px 12px rgba(255, 255, 255, 0.2);
    filter: brightness(1.2);
}

.imprimer:active {
    transform: translateY(2px);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2), -2px -2px 6px rgba(255, 255, 255, 0.1);
}

  a{
    text-decoration: none;
    color: #fff;
  }
  
  a:hover{
    text-decoration: underline;
    text-decoration: solid;
 
  }
 
  
  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-blue{
    color: #4472C4;
  }
  
  .text-darkblue{
    color: #002060;
  }
  
  .text-uppercase{
    text-transform: uppercase; 
  }
  
  .icon{
    margin-right: .5rem;
  }
  
  .wrapper{
    display: grid;
    grid-template-areas: ". content .";
    grid-template-columns: 200px 1fr 200px;

  }
  .cv-container{
    grid-area: content;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-areas: "left-column right-column";
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  }
  
  .section{
    margin-bottom: 1.5rem;
  }
  
  /* LEFT COLUMN */
  .left-column{
    grid-area: left-column;
    padding: 50px;
    background-color: #4472C4;
    color: white;
  }
  .cv-img{
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
  }
  .cv-img img{
    width: 100%;
    height: 100%;
  }

  
  .skills{
    list-style-type: none;
    padding: 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: 0 0 1rem;
  }
  
  /* RIGHT COLUMN */
  .right-column{
    grid-area: right-column;
    display: grid;
    grid-template-rows: 250px 1fr;
    grid-template-areas: 
      "header"
      "content2";  
  }
  
  /* HEADER */
  .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 */
  .content{
    grid-area: content2;
    padding: 50px;
  }
  
  .experience-list{
    list-style-type: circle;
  }

  @media screen and (max-width: 478px) {
    .wrapper{
      grid-template-areas: "content";
      grid-template-columns: 1fr;
  
    }
    .cv-container{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: 
        'left-column' 
        'right-column';
        gap: 10px;
      }
    .right-column{
        padding: 10px;
    }
    .left-column{
        padding: 20px;
    }
    .left-column p{
      text-align: justify;
    }
    .header{
        padding: 10px;
        display: flex;
        justify-content: left;
    }
    .content{
        padding: 10px;
      }
      .cv-img{
        width: 200px;
        height: 200px;
      }
      ul li{
        list-style: none;
        line-height: 25.5px;
      }

}
