h1{
    font-size: 5rem;
    text-indent: 5%;
}

img {
    /* display: block; */
    width: 100%;
}

* {
    box-sizing: border-box;
  }
  
  /* Create three equal columns that floats next to each other */
  .column {
    float: left;
    width: 33.33%;
    padding: 10px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  @media screen and (max-width: 600px) {
    .column {
      width: 100%;
    }
  }

  .cent {
      margin: auto;
      width: 100%;
      max-width: 1280px;
      display: block;
  }