* {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  transition: color 0.3s ease;
}
a:not(:is(:hover, :focus)) {
  text-decoration-color: color-mix(in srgb, currentColor, transparent 35%);
}
a:link, a:visited {
  color: #333;
}
@media (prefers-color-scheme: dark) {
  a:link, a:visited {
    color: #999;
  }
}
a:hover, a:active {
  color: #f38f1c;
}

body {
  font-family: "source-sans-3", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
  background-color: #8f8d89;
}
@media (prefers-color-scheme: dark) {
  body {
    color: #ccc;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #393836;
  }
}

.wrapper {
  width: 100%;
  padding: 3rem;
}

header {
  text-align: center;
  margin-bottom: 2.5rem;
}
header a {
  text-decoration: none;
}
header h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0 0 0.5rem;
  line-height: 1.5;
  text-transform: uppercase;
}
header h1 a:link, header h1 a:visited {
  color: #ccc;
}
header h1 a:hover, header h1 a:active {
  color: #f38f1c;
}
header nav li {
  font-size: 1.67rem;
  font-weight: 300;
  margin: 0 2rem 0.25rem;
  line-height: 1;
  text-transform: uppercase;
}
header nav li a:link, header nav li a:visited {
  color: #666;
}
header nav li a:link[aria-current=page], header nav li a:visited[aria-current=page] {
  color: #333;
}
@media (prefers-color-scheme: dark) {
  header nav li a:link[aria-current=page], header nav li a:visited[aria-current=page] {
    color: #ccc;
  }
}
header nav li a:hover, header nav li a:active {
  color: #f38f1c;
}

footer {
  text-align: center;
  padding: 20px 0;
  color: #666;
  font-weight: 300;
  font-size: 0.8rem;
}
@media (prefers-color-scheme: dark) {
  footer {
    color: #999;
  }
}

/* --------- */
/* home page */
/* --------- */
main.home section.show img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
main.home section.catalog {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr));
}
main.home section.catalog article {
  width: 100%;
  max-width: 600px;
  justify-self: center;
}
main.home section.catalog article a {
  text-decoration: none;
}
main.home section.catalog article a:link, main.home section.catalog article a:visited {
  color: #333;
}
@media (prefers-color-scheme: dark) {
  main.home section.catalog article a:link, main.home section.catalog article a:visited {
    color: #ccc;
  }
}
main.home section.catalog article a:hover, main.home section.catalog article a:active {
  color: #f38f1c;
}
main.home section.catalog article a figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-bottom: 0.8rem;
}
main.home section.catalog article a figure figcaption h3 {
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05rem;
  text-align: center;
}

/* ------------ */
/* catalog page */
/* ------------ */
main.catalog {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: center;
}
main.catalog.photo {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr));
}
main.catalog.video {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 600px), 1fr));
}
main.catalog article {
  width: 100%;
  max-width: 600px;
  justify-self: center;
}
main.catalog article a {
  text-decoration: none;
}
main.catalog article a:link, main.catalog article a:visited {
  color: #333;
}
@media (prefers-color-scheme: dark) {
  main.catalog article a:link, main.catalog article a:visited {
    color: #ccc;
  }
}
main.catalog article a:hover, main.catalog article a:active {
  color: #f38f1c;
}
main.catalog article figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-bottom: 0.8rem;
}
main.catalog article figure figcaption h3 {
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05rem;
  text-align: center;
}

/* ------------ */
/* project page */
/* ------------ */
main.project section.info {
  color: #333;
  margin-bottom: 1lh;
}
@media (prefers-color-scheme: dark) {
  main.project section.info {
    color: #999;
  }
}
main.project section.info h3 {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.0625rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
main.project section.info p {
  font-size: 1rem;
  margin-bottom: 1lh;
}
main.project section.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
main.project section.gallery img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
main.project section.gallery.square img {
  aspect-ratio: 1/1;
}
main.project section.gallery.tiny {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
main.project section.gallery figcaption {
  font-size: 0.9rem;
  color: #333;
}
@media (prefers-color-scheme: dark) {
  main.project section.gallery figcaption {
    color: #999;
  }
}
main.project section.text {
  color: #333;
  margin-bottom: 1lh;
}
@media (prefers-color-scheme: dark) {
  main.project section.text {
    color: #999;
  }
}
main.project section.text p {
  font-size: 1rem;
  margin-bottom: 1lh;
}

/* ---------- */
/* video page */
/* ---------- */
/* ---------- */
/* about page */
/* ---------- */
main.about {
  width: 71%;
  margin: 0 auto;
}
main.about h3 {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 1.5rem;
}
main.about div {
  display: grid;
  grid-template-columns: 30% 67%;
  grid-column-gap: 3%;
}
main.about div .photo {
  text-align: right;
  font-size: 0.875rem;
  color: #666;
}
main.about div .photo img {
  width: 100%;
  height: auto;
}
main.about div p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1lh;
  color: #ccc;
}

/* Tablet and up */
@media screen and (min-width: 768px) {
  .wrapper {
    width: 80%;
    max-width: 1900px;
    margin: 0 auto;
    padding: 2rem;
  }
  header nav ul li {
    display: inline-block;
    margin: 0 1rem;
  }
}/*# sourceMappingURL=style.css.map */