@font-face {
    font-family: 'condensed';
    src: url('https://fonts.google.com/specimen/Barlow+Semi+Condensed');
    font-weight: 600;
}
:root{
    --purple-dark: hsl(263, 55%, 52%);
    --purple-ligth: hsl(264, 82%, 80%);
    --purple-neutral:hsl(260, 100%, 95%);
    --White: hsl(0, 0%, 100%);
    --Grey100: hsl(214, 17%, 92%);
    --Grey200: hsl(0, 0%, 81%);
    --Grey400: hsl(224, 10%, 45%);
    --Grey500: hsl(217, 19%, 35%);
    --Darkblue: hsl(219, 29%, 14%);
    --Black: hsl(0, 0%, 7%);
}
body{
    background-color: var(--purple-neutral);
    
}
.container{
    font-family: "consended";
    font-size: 13px;
    display: grid;
    grid-template-columns: 300px 300px 300px 300px;
    grid-template-rows: 350px 350px 350px;
    gap: 30px;
    margin-left: 7rem;
    margin-top: 2rem;
}

.daniel{
    grid-column: 1 / 3;
    grid-row: 1;
    background-color: var(--purple-dark);
    color: var(--White);
}
 .jonathan{
    grid-column: 3;
    grid-row: 1;
    background-color: var(--Grey500);
    color: var(--White);
 }
 .kira{
    grid-row: 1 / 3;
    grid-column: 4;
    background-color: var(--White);
    color: var(--Black);
 }
 .jeanette{
    grid-column: 1;
    grid-row: 2;
    background-color: var(--White);
    color: var(--Black);
 }
 .patrick{
    grid-row: 2;
    grid-column: 2 / 4;
    background-color: var(--Darkblue);
    color: var(--White);
 }

 .items{
    padding: 2rem 2rem;
    border-radius: 10px;
 }
 .items .testimony p{
    line-height: 1.5;
    color: var(--Grey200);
 }
 .items .testimony{
    width: 90%;
    margin-top: 2.5rem;
 }
 .jeanette .testimony p, .kira .testimony p {
    color: var(--Grey500);
 }
 .items .identifiant .infos{
    margin-top: -3rem;
    margin-left: 4.5rem;
    display: block;
 }
 .items .identifiant .infos .name{
   font-weight: 600;
 }
 .items .identifiant .infos .title{
   color: var(--Grey200);
 }

 .items .identifiant img{
    border-radius: 35px;
 }

 @media screen and (max-width:375px){
   .container{
      display: flex;
      flex-flow: row wrap;
      align-content: flex-start;
      font-size: 10px;
      gap: 10px;
      margin: 0rem;
   }
   .items{
      height: 250px;
      overflow: hidden;
      text-overflow: " [..]";
     
   }
   .attribution{
      margin-top: 2rem;
      
   }
 }
