*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: underline;
}

a:hover,
a:active {
  text-decoration: none;
}

@font-face {
  font-family: "standard";
  src: url("fonts/standard-book-webfont.woff2") format("woff2");
}
@font-face {
  font-family: "standard";
  src: url("fonts/standard-bold-webfont.woff2") format("woff2");
  font-weight: bold;
}
body {
  font-family: "standard";
  background: black;
  color: white;
}

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

header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  max-width: 1400px;
  margin: 2rem auto;
}
header h1 {
  font-weight: normal;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

#menu-classes {
  grid-column: span 2;
}

.gallery,
.image {
  max-width: 100%;
  max-height: 80vh;
  height: 80vh;
  width: 100%;
}

.gallery {
  margin-bottom: 1em;
}

.flickity-page-dots {
  top: -25px;
  bottom: 100%;
  height: 25px;
}

.flickity-prev-next-button {
  border: 5px solid #000;
}

.flickity-prev-next-button.next {
  right: -2em;
}

.flickity-prev-next-button.previous {
  left: -2em;
}

.image img {
  display: block;
  margin: auto;
}

#container {
  column-count: 4;
  column-gap: 1em;
  max-width: 1400px;
  margin: auto;
}

h2 {
  margin-top: 0.5rem;
}

h2,
p {
  margin-bottom: 0.5rem;
}

.project-teaser {
  break-inside: avoid;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  cursor: pointer;
  transition: all 0.2s;
}
.project-teaser h2 {
  font-weight: normal;
  font-size: 1.25em;
  transition: text-indent 0.2s;
}
.project-teaser img {
  width: 100%;
  transition: all 0.2s;
}
.project-teaser:hover {
  transform: scale(0.9);
}
.project-teaser:hover h2 {
  text-indent: 2em;
}

.project-full {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  top: 0;
  left: 0;
}
.project-full .interior {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  height: 100vh;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  padding: 2em;
  overflow-y: scroll;
  overflow-x: visible;
}

.project-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 2em;
  color: black;
}

label {
  text-transform: uppercase;
  width: 8em;
  display: inline-block;
}

button {
  font-size: 1em;
  padding: 0.5em 1em;
  text-transform: uppercase;
  border: 1px solid white;
  color: #000;
  background: #FFF;
  border-radius: 1em;
  margin: 0.25em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

button:hover, button.active {
  color: white;
  background: black;
}

button.close {
  background: #FFF;
  color: #000;
  padding: 0;
  font-size: 3em;
  font-weight: bold;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #000;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  transform: translate(565px, -0.25em);
  cursor: pointer;
}

button.close:hover {
  background: #000;
  color: #FFF;
}

@media (max-width: 1200px) {
  #container {
    column-count: 3;
  }
  button.close {
    top: 0;
    right: 0;
    transform: none;
  }
}
@media (max-width: 800px) {
  header {
    display: block;
    padding: 0.25em;
    margin: 0;
  }
  header h1 {
    padding: 0;
    margin: 0;
    margin-bottom: 0 !important;
    text-align: left !important;
    font-size: 1.5em;
  }
  button {
    font-size: 0.7em;
  }
  #container {
    column-count: 2;
    column-gap: 0.5em;
    padding: 0.5em;
  }
}
.project-full .interior {
  padding: 4em 1em;
}

button.close {
  transform: translate(-50%);
}

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