/**
 * @file
 * CSS reset/normalize plus HTML element styling.
 */

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600'); html {
  background: #ececec;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI" , Roboto, "Helvetica Neue", Arial, sans-serif;
}
a {
  color: #1976d2;
}
em {
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI" , Roboto, "Helvetica Neue", Arial, sans-serif;
}
details {
  border: 1px solid #ccc;
}
summary {
  background: #eee;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 24px 8px 16px;
  position: relative;
  cursor: pointer;
}
summary:focus {
  outline: 0;
}


/**
 * Responsive tables.
 */
@media screen and (max-width: 37.5em) { /* 600px */
  table {
    font-size: 12px;
  }
}
@media screen and (max-width: 60em) { /* 920px */
  table {
    font-size: 14px;
  }
}
