/* Import Raleway font */
/* @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,700;1,400;1,700&display=swap'); */
@import url('raleway.css'); /* Localy hosted Google fonts */

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Raleway', 'Helvetica', 'Arial', sans-serif;
  font-size: 0.85em;
  line-height: 1.5;
  background-color: #fbfbfb;
  color:#333333;
}

main {
  flex: 1 0 auto;
}

a:link,
a:hover,
a:visited,
a:active {
  color: #cc0000;
}