html {
  min-height: 100vh;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  color: #fff;
  background: #111;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  text-rendering: geometricPrecision;
  line-height: 1.4;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  margin-bottom: 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  text-transform: uppercase;
}
h1 {
  font-size: 3em;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1.1em;
}
a {
  color: inherit;
  text-decoration: none;
}
hr {
  border: none;
  margin-bottom: 1em;
}
.hidden {
  display: none;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.grid-item {
  position: relative;
  background: top left no-repeat;
  background-size: cover;
  aspect-ratio: 1;
  padding: 1em;
  color: #fff;
  font-size: 1.2em;
  text-shadow: 2px 2px 0px #000, 0 0 30px #000, 0 0 30px #000, 0 0 30px #000, 0 0 30px #000, 0 0 30px #000, 0 0 30px #000;
}
.grid-item:hover .grid-img,
.grid-item.active .grid-img {
  filter: none !important;
}
.grid-item a {
  border-bottom: 2px solid rgba(255,255,255,0.75);
}
a.grid-item {
  border-bottom: none;
}
.grid-img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
  filter: brightness(0%);
  transition: filter 0.2s ease-out;
}
.grid-large {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 700px) {
  .grid-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.grid-expand {
  grid-column: 1/-1;
  background: #f4f4f4;
  color: #080808;
  padding: 1.5em 1em;
  scroll-margin-top: 20px;
}
.page {
  max-width: 800px;
  margin: 0 auto;
}
.page a {
  border-bottom: 2px solid #080808;
}
#projects .page {
  max-width: 1200px;
}
.youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 0 auto 4em auto;
}
.youtube iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.contact-page {
  padding-bottom: 12em;
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.contact input,
.contact textarea,
.contact button {
  padding: 0.75em;
  border: 2px solid #ccc;
  border-radius: 4px;
  font: inherit;
}
.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: #333;
}
.contact button {
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
}
.contact button:hover {
  background: #333;
}
.contact button:disabled {
  background: #999;
}
.upload-frame {
  width: 100%;
  height: 100px;
  border: 2px solid #ccc;
  border-radius: 4px;
}
.checkout-frame {
  width: 100%;
  min-height: 600px;
  border: none;
}

