@charset "UTF-8";
figure {margin: 0;}
body {
  background-color: #18361f;
  margin: 0;
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: #dadad6;
  width: 100%;
  height: 100%;
}
/* LINKS */
a:link {text-decoration: none; color: #dadad6;}
a:visited {color: #dadad6;}
a:hover {color: #aaaaa7; transition: all 0.1s ease-in;}
a:focus {outline: none;}
.caption a:link {color: #f2f2ee;}
.caption a:hover {color: #f2f2ee;}
.caption a:visited {color: #f2f2ee;}
.content a {font-variant: small-caps;}
/* LOGO */
.home-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('images/index.jpg') center no-repeat;
  background-size: cover;
  width: 100vw;
  height: 35vw;
}
.page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('images/index_page.jpg') center no-repeat;
  background-size: cover;
  width: 100vw;
  height: 20vw;
}
.caption {
  font-family: Quattrocento, sans-serif;
  color: #f2f2ee;
  line-height: 1.0;
  text-align: center;
}
.logo {
  font-size: 80px;
  font-weight: 400;
}
.byline {
  font-size: 20px;
}
/* NAVIGATION */
.header {
  background-color: #18361f;
  padding-top: 4px;
  padding-bottom: 4px;
  position: sticky;
  top: 0;
}
.nav {
  width: 100%;
  padding: 0;
  display: table;
  text-align: center;
  font-size: 18px;
  list-style: none;
}
.nav li {
  display: inline-block;
  float: none;
  margin-right: 15px;
  margin-left: 15px;
}
/* PAGE */
.wrapper {
  text-align: center;
  padding: 0;
}
.title {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 32px;
}
.content {
  width: 800px;
  font-size: 18px;
  text-align: left;
  display: inline-block;
  overflow: hidden;
  margin: 0;
}
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  color: #5b5b5b;
  text-align: center;
}
/* WRITING */
.writing_header {
  overflow: auto;
}
.writing_img {
  width: 33%;
  float: left;
  margin-right: 20px;
}
.quote {
  font-size: 24px;
  line-height: 1.5;
  font-style: italic;
}
/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,33%);
  grid-auto-rows: 364px;
  grid-gap: 2px;
}
.thumbnail {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/*LIGHTBOX*/
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(24,54,31,0.8);
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  margin-top: 2%;
}
.lightbox:target {
  outline: none;
  display: block;
}

/* LARGE TABLET */
@media screen and (max-width: 900px) {
  .header {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .logo {font-size: 60px;}
  .byline {font-size: 15px;}
  .nav { font-size: 14px}
  .nav li {
    margin-right: 8px;
    margin-left: 8px;
  }
  .title {font-size: 26px;}
  .content {
    width: 500px;
    font-size: 16px;
  }
  .footer {
    font-size: 13px;
  }
  .quote { font-size: 17px}
  .gallery-grid {grid-auto-rows: 226px;}
}
/* SMALL TABLET */
@media screen and (max-width: 600px) {
  .header {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .caption {line-height: 0.8;}
  .logo {font-size: 40px;}
  .byline {font-size: 10px;}
  .nav {
    margin-top: 10px;
    font-size: 11px;
  }
  .nav li {
    margin-right: 7px;
    margin-left: 7px;
  }
  .title {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .content {
    width: 400px;
    font-size: 14px;
  }
  .footer {
    font-size: 12px;
  }
  .writing_img {margin-right: 15px;}
  .quote { font-size: 14px;}
  .gallery {grid-gap: 2px;}
  .gallery-grid {grid-auto-rows: 180px;}
}
/* PHONE */
@media screen and (max-width: 420px) {
  .header {
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .caption {line-height: 0.5;}
  .logo {font-size: 20px;}
  .byline {font-size: 6px;}
  .nav {
    font-size: 7px;
    margin-top: 10px;
  }
  .nav li {
    margin-right: 5px;
    margin-left: 5px;
  }
  .title {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .content {
    width: 260px;
    font-size: 12px;
  }
  .footer {
    font-size: 11px;
  }
  .writing_img {margin-right: 5px;}
  .quote {font-size: 9px;}
  .gallery-grid {
    grid-auto-rows: 119px;
    grid-gap: 1px;
  }
}
