/* CSS Centering Code with the Universal Selector "*" */ 

* {

    text-align: center;
    
    }
    
    /*Alternative CSS Centering Code with the "body" Selector*/
    
    body {
    
    text-align: center;
    
    }
    
    /* Styling */
    
    body {
      margin: auto;
      width: 640px; 
      padding: 50px;
      font-family: 'Lexend Deca', sans-serif; 
      color: #2E475D;    
    }


    .column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}