.container2 {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;

    
}

.container2 h3 {
    text-transform: uppercase;
    max-width:50%;  
    margin-bottom: 15px;
    margin-top:50px;
    font-weight: bold;
}

.container2 p {
max-width:50%;  
}

.container2::before {
    content: '';
    width: 100vw;
    height: 200%;
    margin-top: -10%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f2f2f2;
    z-index: -1;
    margin-left: -30vw;

  clip-path: polygon(
      0% 0%,       /* Top-left  */
      100% 8%,     /* Top-right point */
      98% 94%,    /* Bottom-right  */
      0% 100%      /* Bottom-left  */
  );

}