/* .name = object.class */
/* #name = object.id    */
/* body  = all html items */

/* Building a Responsive Grid-View */
/* First ensure that all HTML elements have the box-sizing property set to border-box. This makes sure that the padding and border are included in the total width and height of the elements. Add the following code in your CSS: */
/* https://www.w3schools.com/css/css_rwd_mediaqueries.asp */


footer { /* Wordt gebruikt om alle <footer> netjes midden onderin het scherm te zetten FOOTER */
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: silver;
  padding: 10;
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
  word-spacing: 4px;
  
  a {
    letter-spacing: 2px;
    word-spacing: 2px;
  }
}
