.example {
  width: 70%;
  margin-left: auto;
  margin-right: auto;  
  text-align: center;
  padding-bottom: 1rem;

  h2 {
    padding-bottom: 1rem;
  }

  .exampleBox {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

    .website {
      width: 250px;
      height: 350px;
      background-color: var(--l);
      
      flex: 0 0 auto;
      border-radius: 10px;
      img {
        border-radius: 10px;
      }
    }
  }

  .exampleCta {
    background-color:  var(--l);
    padding: 0.5rem;
    margin-top: 1rem;
    border-radius: 5px;
  }

}


/* mobile */
/* @media (min-width: 320px) {
 
} */

/* landscape mobile */
@media (min-width: 568px) {
  .example {
    .exampleBox {
      flex-direction: row;
      gap: 1rem;
      justify-content: center;
    }

    .exampleCta {
      width: 40%;
      margin-left: auto;
      margin-right: auto;
    }
  }
}

/* tablet */
/*@media (min-width: 768px) {

} */

/* desktop */
/* @media (min-width: 1024px) {
 
} */