.whereAreWe{
     margin-top: 2rem;
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    column-gap: 2rem;
    row-gap: 4rem;

}

p{
    font-size: 2rem;
   line-height: 1.6;
}
@media only screen and (max-width: 600px) {
   .whereAreWe{
    display: flex;
    flex-direction: column;

   }
   p{
    text-align: center;
   }
}