/* Copyright (c) We Decide Canada
 * File: home.css
 * Purpose: Styles for the home page view using global theme variables.
 * Requires: global_theme.css
 */

#home {
  padding: 2rem 0;
}

#home .container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

#home h1 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

#home p {
  color: var(--color-text);
  margin-bottom: 1rem;
}

#home strong {
  color: var(--color-accent);
}

@media (min-width: 641px) {
  #home h1 { font-size: 2rem; }
  #home p { font-size: 1.0625rem; }
}

@media (min-width: 1025px) {
  #home { padding: 3rem 0; }
  #home h1 { font-size: 2.25rem; }
  #home p { font-size: 1.125rem; }
}
