@font-face {
  font-family: "Poiret One";
  src: url("/static/fonts/PoiretOne-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color: #000;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background: #fff;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: 32px 40px;
}

.site-header a {
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header a:hover,
.site-header a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

.skyline-lockup {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34vh;
  min-height: 220px;
}

.skyline-lockup h1 {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 6.5vh;
  left: 0;
  margin: 0;
  font-family: "Poiret One", "Avenir Next Condensed", sans-serif;
  font-size: clamp(4.5rem, 11vw, 10.5rem);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.skyline-lockup img {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 20vh;
  min-height: 130px;
}

@media (max-width: 640px) {
  .site-header {
    padding: 24px;
  }

  .skyline-lockup {
    height: 40vh;
  }

  .skyline-lockup h1 {
    bottom: 5.5vh;
    font-size: clamp(2.75rem, 12vw, 4rem);
    letter-spacing: 0.02em;
    line-height: 0.8;
    white-space: nowrap;
  }

  .skyline-lockup img {
    height: 22vh;
  }
}
