/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css?family=Arvo:400,400i,700,700i|Montserrat:100,100i,300,300i,800,900,900i|IM+Fell+Great+Primer:400i&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

html {
  font-size: var(--base-font-size); }

body {
  font-family: 'Arvo', serif;
  font-weight: 400;
  line-height: 1.45; }

p {
  font-family: 'Arvo', serif;
  margin-bottom: 1.25em; }

h1, h2, h3, h4, h5 {
  transition: color .6s;
  color: #d0d0cc;
  margin: 2.75rem 0 1rem;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  line-height: 1.15; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif; }

h1 {
  font-size: 72px;
  font-weight: 900; }

h2 {
  font-size: 48px; }

h3 {
  font-size: 22px; }

h4 {
  font-size: 18px; }

h5 {
  font-size: 16px; }

a {
  color: #f3b820;
  font-family: 'IM Fell Great Primer', serif;
  font-weight: bold; }
  a:hover {
    color: #f3b820; }

small {
  font-size: 0.889em; }

strong {
  font-weight: 700; }

.text-center {
  text-align: center; }

blockquote {
  border-left: 4px solid #f3b820;
  padding-left: calc(var(--space) / 2);
  color: #d0d0cc; }

em {
  font-style: italic; }

ul {
  list-style-type: disc;
  margin-left: 1.25em;
  margin-bottom: 1.25em; }
  ul li {
    margin-bottom: .6em; }

ol {
  list-style-type: decimal;
  margin-left: 1.25em;
  margin-bottom: 1.25em; }
  ol li {
    margin-bottom: .6em; }

.center {
  text-align: center; }

body {
  background-color: #231e21;
  color: #d0d0cc; }

.logo {
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 10% 0;
  width: 100%;
  transition: width 1s, margin 1s; }
  .logo.scroll {
    width: 120px;
    margin: 10px 10px 100px;
    position: sticky;
    top: 0;
    background: red; }
  .logo img {
    max-width: 100%;
    height: auto;
    transition: 0.5s transform; }
    .logo img:hover {
      transform: translateY(-10%); }
      @media only screen and (max-width: 960px) {
        .logo img:hover {
          transform: translateY(0); } }

.flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25em; }
  .flex .resources {
    width: 100%;
    max-width: 960px;
    padding: 1.25em 0; }

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.25em;
  padding: 0 10%; }
  @media only screen and (max-width: 960px) {
    .grid {
      grid-template-columns: 1fr; } }
  .grid .resources {
    border: rgba(243, 184, 32, 0) 1px solid;
    padding: 1.25em 1.25em 0;
    transition: 0.5s border; }
    .grid .resources h2 {
      margin: 0 0 0.5em; }
    .grid .resources li .fa-li {
      transition: 0.5s transform; }
    .grid .resources li:hover .fa-li {
      transform: translateX(-10px); }
      @media only screen and (max-width: 960px) {
        .grid .resources li:hover .fa-li {
          transform: translateX(0); } }
    .grid .resources:hover {
      border: #f3b820 1px solid; }
      @media only screen and (max-width: 960px) {
        .grid .resources:hover {
          border: rgba(243, 184, 32, 0) 1px solid; } }

.footer {
  margin: 10% 0;
  padding: 0 10%; }
