/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--fg-color);
}

article {
  margin: 1em;
  padding-bottom: 3em;

  h1 {
    font-size: 2.5em;
    font-weight: 900;
    text-align: center;

    margin: 1rem 0;
  }

  main {
    width: 100%;
    max-width: 72em;
    margin: 1.5em auto;
  }
}

#empty {
  text-align: center;
}

a {
  color: var(--link-color);
  text-decoration: none;
  &:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
  }
}

@media screen and (min-width: 36em) {
  article {
    padding-top: 3em;
    padding-bottom: 0;
  }
}
