:root {
  --color-sage-green: #606c38;
  --color-teal: #283618;
  --color-white: #fff;
  --color-black: #000;
  --color-link: #82974A;
  --bg-body: #2c2c2a;
  --bg-container: #1A1A16;
  --bg-border-container: #434343;
  --max-width: 860px;
  --padding: 1rem;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background-color: var(--bg-body);
}

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

/* GRID STYLES */
.site {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-areas: "header" "nav" "content" "side" "footer";
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto auto; /* Footer */
}

@media (min-width: 900px) {
  .site {
    grid-template-areas: "header header" "nav nav" "side content" "footer footer";
    grid-template-columns: 1fr 645px;
    grid-template-rows: auto auto 1fr auto;
    min-height: 100vh;
  }
  .site:has(main.no-sidebar) {
    grid-template-areas: "header header" "nav nav" "content content" "footer footer";
  }
}
header {
  grid-area: header;
  border-top: 5px solid var(--color-sage-green);
}
header > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 0 0;
}
header img {
  margin-right: 2rem;
}

#logo h1 a,
#logo h2 {
  font-family: century gothic, sans-serif;
  font-size: 16px;
  text-transform: lowercase;
  font-weight: normal;
  padding: 0 0 15px 14px;
  float: left;
  letter-spacing: 0;
  text-decoration: none;
}

#logo h1 a {
  font-size: 60px;
  color: #999;
  text-shadow: 2px 2px 1px #111;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

#logo h2 {
  color: #999;
}

/* NAV STYLES */
nav {
  grid-area: nav;
}
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
nav li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
nav a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-white);
}
nav a:hover {
  opacity: 0.8;
}

/* Individual menu item colors */
nav li:nth-child(1) a,
nav li:nth-child(3) a {
  background-color: var(--color-sage-green);
}

nav li:nth-child(2) a,
nav li:nth-child(4) a {
  background-color: var(--color-teal);
}

@media (min-width: 900px) {
  nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
main {
  background-color: var(--bg-container);
  grid-area: content;
  padding: var(--padding);
  border-top: 1px solid var(--bg-border-container);
  border-right: 1px solid var(--bg-border-container);
  border-bottom: 1px solid var(--bg-border-container);
  color: #929280;
  display: block;
}
main h1, main h2 {
  color: #e6e8dc;
  border-bottom: 1px solid #40403e;
  font-family: arial, sans-serif;
  letter-spacing: 0.1em;
  font-weight: normal;
  text-transform: uppercase;
  padding: 16px 0 5px 0;
  font-size: 28px;
  margin-bottom: 32px;
}
main p {
  margin-bottom: 0.75rem;
}
main ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.home-intro-image {
  margin: 0 0 20px 20px;
  float: right;
  max-width: 250px;
  height: auto;
}

.home-footer-image {
  width: 100%;
  height: auto;
}

aside {
  background-color: var(--bg-container);
  grid-area: side;
  border: 1px solid var(--bg-border-container);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: var(--padding);
}

@media (min-width: 900px) {
  aside {
    border-right: 1px solid var(--bg-border-container);
  }
}
footer {
  grid-area: footer;
  display: none;
}/*# sourceMappingURL=styles.css.map */