:root {
  --title-font: "Raleway", sans-serif;
  --body-font: "Quicksand", sans-serif;
  --header-font: "Alethia", serif;
  --color-white: #EEECE9;
  --color-black: #080614;
  --color-dark-green: #153417;
  --color-light-green: #485C17;
  --color-brown: #624527;
}

@font-face {
  font-family: "Alethia";
  src: url("/static/fonts/Alethia Pro Regular.otf");
}
html,
body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: var(--color-white);
  margin: auto;
  color: var(--color-dark-green);
}

main {
  flex-grow: 1;
}

header,
main,
footer {
  flex-shrink: 0;
  padding: 0 min(2rem, 3vw);
}

body p,
body li,
body a {
  font-family: var(--body-font);
}

h1,
h1 a,
h2,
h3,
h3 a,
h4 {
  font-family: var(--title-font);
}

h3,
h3 a,
h3 a:visited {
  color: var(--color-dark-green);
  font-weight: 400;
}

p,
li {
  color: var(--color-dark-green);
  font-weight: 300;
}

strong {
  font-weight: 500;
}

/* HEADER */
header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding: min(50px, 3vh) 0 0 0;
  z-index: 10;
}

header h1 a:hover {
  text-decoration: none;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}
nav * {
  font-size: 14px;
  font-family: var(--title-font) !important;
}

header .nav-link {
  color: var(--color-dark-green);
}

.nav-link.is-active {
  text-decoration: underline;
}

nav ul {
  width: 100%;
  justify-content: space-between;
}

header li + li,
footer li + li {
  margin-left: 1rem;
}

.header-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-title.small-header h1 {
  font-size: min(4rem, 5vw);
}
.header-title h1 {
  margin: 0;
  font-size: min(7rem, 9vw);
  font-weight: 500;
  font-family: var(--header-font);
}
.header-title h1 a {
  font-family: var(--header-font);
  color: var(--color-dark-green);
}

.mobile {
  display: none !important;
}

@media (max-width: 800px) {
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
  header {
    width: 100%;
  }
  nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .mobile-nav-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s;
  }
  .mobile-nav-container ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  nav .open .mobile-nav-container {
    opacity: 1;
    z-index: 2;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
  }
  .mobile-nav-container ul {
    flex-direction: column;
    font-size: 24px;
  }
  .mobile-nav-container ul li.right-nav-link {
    align-self: flex-end;
  }
  .mobile-nav-container ul li.right-nav-link a {
    color: var(--color-dark-green);
  }
  .mobile-nav-container ul li.right-nav-link + li.right-nav-link {
    margin-top: 1rem;
  }
  .mobile-nav-container ul li a {
    font-size: 18px;
  }
  .mobile-nav-container ul li + li {
    margin: 0;
    margin-top: 2rem;
  }
  .menu-button {
    z-index: 3;
    position: relative;
    cursor: pointer;
    display: grid;
    margin-right: 1rem;
  }
  .menu-button svg {
    fill: var(--color-dark-green);
  }
  nav {
    margin-top: 0;
  }
  nav .open .menu-button .open-menu {
    display: none;
  }
  nav :not(.open) .menu-button .close-menu {
    display: none;
  }
  nav a:visited {
    color: var(--color-dark-green);
  }
  header {
    flex-direction: row;
    align-items: center;
  }
  header h1 {
    z-index: 3;
  }
  .header-title {
    order: 2;
  }
}
/* FOOTER */
footer {
  padding-top: 1rem;
  padding-bottom: 1rem;
  z-index: 1;
}
footer nav {
  margin-top: 0;
}
footer nav.right {
  align-items: flex-end;
}
footer nav.left {
  align-items: flex-start;
}
footer a {
  color: var(--color-dark-green);
}

footer ul {
  justify-content: flex-start;
}

/* COMMON */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

ul.vertical-list {
  flex-direction: column;
}

.faded {
  color: var(--color-grey);
}

.full-width, .outro, .project-images {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

body {
  overflow-x: hidden;
}

.projects {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10rem;
}
.intro h2 {
  margin: 0;
}

@media (max-width: 800px) {
  .intro p {
    text-align: center;
    padding: 0 1rem;
  }
}
.project {
  margin: 20rem 0;
}
.project + .project {
  margin-top: 0;
}

.project-images {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.project-images img {
  object-fit: cover;
}
.project-images img + img {
  margin-left: 2rem;
}

@media (max-width: 800px) {
  .project {
    margin: 15rem 0;
  }
  .project-images img:nth-child(2) {
    margin-left: calc(-300px + 20vw) !important;
    margin-top: calc(400px - 20vw);
  }
  .project-images img:nth-child(3) {
    margin-left: calc(-300px + 20vw) !important;
    margin-top: calc((400px - 20vw) * 2);
  }
}
.project-name {
  text-align: center;
  margin: 2rem 0;
  text-decoration: underline;
}

.project-description {
  max-width: 40rem;
  margin: auto;
}

@media (max-width: 800px) {
  .project-description {
    text-align: center;
    padding: 0 1rem;
  }
}
.outro img {
  width: 100%;
  margin-bottom: -70px;
}

footer a {
  color: var(--color-white);
}

/*# sourceMappingURL=projects.css.map */
