.workFlow {
  padding: 2rem 0;
  width: 100vw;

  h2 {
    text-align: center;
    padding-bottom: 1rem;
  }

  .contactLink {
    width: fit-content;
    
    
    margin-left: auto;margin-right: auto;
    
    a {
      background-color: var(--l);
      padding: 0.5rem 1rem;
      border-radius: 5px;
    }

  }

  .textBoxs {
    width: 90%;
    margin-left: auto;
    margin-right: auto;

    .textBox {
      width: 90%;
      background-color: var(--g);padding: 1rem;
      border-radius: 10px;
      margin-bottom: 1rem;
      color: aliceblue;
    }

    .white {
      background-color: var(--l);
      color: black;
    }

    .middleText {
      margin-left: auto;
    }
  }
}

/* mobile */
/* @media (min-width: 320px) {
 
} */

/* landscape mobile */
/* @media (min-width: 568px) {

} */

/* tablet */
@media (min-width: 768px) {
  .workFlow {
    .textBoxs {
      width: 50%;
    }
  }
}

/* desktop */
/* @media (min-width: 1024px) {
 
} */