/* CSS for the 'main' HTML */

html {
  height: 100%;
  font-size: 100%;
}

body {
  font-family: 'Taviraj', serif;
  font-size: 16px;
}

h1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 200%;
}

h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 150%;
}

h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 112.5%;
}

/* Additional styles */

.newspaper {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  -webkit-column-rule-style: solid;
  -moz-column-rule-style: solid;
  column-rule-style: solid;
  -webkit-column-rule-width: 1px;
  -moz-column-rule-width: 1px;
  column-rule-width: 1px;
  -webkit-column-rule-color: black;
  -moz-column-rule-color: black;
  column-rule-color: black;
}

* {
  box-sizing: border-box;
}

.column {
  float: left;
  width: 50%;
  padding: 10px;
  height: 600px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}
