.numbers span{
    text-align: center;
  }
  .counter h1{
    padding: 10px;
  }
  .numbers{
      display: flex;
      justify-content: space-evenly;  
    }
    .cont{
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 1px solid #111;
    }
    .numberz {
        font-family: 'Arial', sans-serif;
        font-size: 50px;
        font-weight: bold;
        line-height: 1em;
        text-align: center;
        padding: 10px;
        margin: auto;
        overflow: hidden;
        color: #fff;
      }
      .texts{
        text-align: center;
        padding: 10px;
        font-size: 18px;
        color: #fff;
      }
      .numberz span{
        display: flex;
      }
      .numberz span p{
        padding-left: 5px;
      }
    @media screen and (min-width: 1500px) {
      .numbers button{
        margin-top: 5%;
      }
    }
    
    @media screen and (max-width: 800px) {
    .numbers{
      flex-direction: column;
    }
  }
  @media screen and (max-width: 450px) {
    .numbers{
      grid-template-columns: repeat(1, 1fr);
    }
  }