@font-face {
  font-family: "Helvetica Now Display";
  src: url("HelveticaNowDisplay-XBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

.home {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home__bg {
  position: fixed;
  inset: 0;
  background-image: url("cover-image.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 75%;
  z-index: 0;
}

.home__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(260px, calc(100vw - 40px));
  height: auto;
  min-width: 0;
  object-fit: contain;
  margin: auto;
}

@media (min-width: 768px) {
  .home__logo {
    max-width: min(300px, calc(100vw - 40px));
  }
}

.home__contact {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: "Helvetica Now Display", Helvetica, sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}
