@import "/assets/fonts/SilkSerif/stylesheet.css";

* {
  margin: 0;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

:root {
  --hero-height: 240px;
}

body {
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "calt" 1;
  background-color: #d5d2d1;
  min-height: 100vh;
}

h1 {
  font-family: "Silk Serif Light";
  font-style: italic;
  font-size: 160px;
  font-size: 10vw;
  text-transform: uppercase;
  font-weight: 200;
  line-height: 0.8;
  letter-spacing: 0.5vw;
  text-align: center;
  color: white;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 120px 0;
  margin: 1em 0;
}

.photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5vw;
  padding: 0 5vw;
}

@media (max-width: 768px) {
  .photos {
    grid-template-columns: repeat(1, 1fr);
  }
}

.photos img {
  width: 100%;
  border-radius: 3px;
  align-self: center;
}

.letterhead {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  height: var(--hero-height);
  width: 100vw;
  z-index: -1;
}

.letterhead > .logo {
  height: 32px;
}

.footer {
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signature {
  position: relative;
  width: 120px;
  height: 120px;
}
