/*! Typebase.less v0.1.0 | MIT License */
/* Setup */
html, body {
    /* Change default typefaces here */
    font-family: var(--font);
    font-size: var(--font-size);
    -webkit-font-smoothing: antialiased;
    color: var(--font-dark);
  }

  /* Copy & Lists */
  p {
    line-height: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-size: 1rem;
  }
  footer p, .footermap nav {
    margin-top: .5rem;
  }
  footer p, .footermap, footer a {
    font-size: var(--font-size--footer);
    color: white;
  }
  ul,
  ol {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  ul li,
  ol li {
    line-height: 1.5rem;
  }
  ul ul,
  ol ul,
  ul ol,
  ol ol {
    margin-top: 0;
    margin-bottom: 0;
  }
  blockquote {
    line-height: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* Headings */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    /* Change heading typefaces here */
    font-family: var(--font--heading);
    font-weight: var(--font-weight--heading);
    margin-top: 1.5rem;
    margin-bottom: 0;
    line-height: 1.5rem;
    color: var(--font-darkest);
  }
  h1 {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-top: 0;
    color:var(--primary-color);
  }
  h2 {
    font-size: 1.75rem;
    line-height: 2.5rem;
    margin-top: 3rem;
  }
  .hero h2, footer h2 {
    margin-top: 0;
  }
  .hero h1 {
    color: var(--font-lightest);
    text-shadow: 3px 3px 7px var(--gray-dark);
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
  }
  .block .field--name-field-title, footer h2 {
    font-size: var(--font-size--footer-title);
    font-family: var(--font--heading);
    font-weight: var(--font-weight--heading);
    color: white;
    line-height: 1.5rem;
  }
  .field--name-body .field--type-text-with-summary > .button > a{
    background-color: var(--secondary-color);
    padding: 15px;
    border-radius: 30px;
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.5s;
  }
  h3 {
    font-size: 1.4rem;
  }
  h4 {
    font-size: 0.7rem;
  }
  h5 {
    font-size: 0.5rem;
  }
  h6 {
    font-size: 0.35rem;
  }

  /* Tables */
  table {
    margin-top: 1.5rem;
    border-spacing: 0px;
    border-collapse: collapse;
  }
  table td,
  table th {
    padding: 0;
    line-height: 33px;
  }

  /* Code blocks */
  code {
    vertical-align: bottom;
  }

  /* Links */
  a {
    color: var(--link-color);
    text-decoration: none;
  }
  a:hover {
    color: var(--link-color--hover);
  }