* {
    box-sizing: border-box;
  }
  
  
  
  /* Center website */
  .mains {
    max-width: 1000px;
    margin:0 auto;
  }
  
  h1 {
    font-size: 50px;
    word-break: break-all;
  }
  
  .row1 {
    margin: 0;
  }
  
  /* Add padding BETWEEN each column1 */
  .row1,
  .row1 > .column1 {
    padding: 8px;
  }
  
  /* Create four equal columns that floats next to each other */
  .column1 {
    float: left;
    width: 25%;
  }
  
  /* Clear floats after rows */ 
  .row1:after {
    content1: "";
    display: table;
    clear: both;
  }
  
  /* content1 */
  .content1 {
    background-color: RGBA(202, 135, 2,0.8);;
    padding: 15px;
    height: auto;
    border: 1px solid RGBA(202, 135, 2,0.8); /*rgba(255, 165, 0,0.7)*/
    border-color:  RGBA(202, 135, 2,0.8); /*rgba(255, 165, 0,0.7)*/
  }
  
  .content1 img{
    height:62%;
    width:62%;
  }
  
  /* Responsive layout - makes a two column1-layout instead of four columns */
  @media screen and (max-width: 900px) {
    .column1 {
      width: 50%;
      margin:0 auto;
    }
    .column1 {
      height: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column1 {
      width: 80%;
      margin:0 auto;
    }
  }