@font-face {
  font-family: "Zalando Sans Expanded";
  src: url("../static/zalando-sans-expanded.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1 {
  font-weight: 400;
}

body {
  margin: 0;
  background-color: #111;
  width: 100%;
  height: 100dvh;
  padding: 48px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.grain-filter {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: soft-light;
  opacity: 0.075;
  z-index: 10;
  background: url("../static/film-grain.gif");
}

main {
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  position: relative;
  color: white;
}

.bg {
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
}

.fg {
  padding-top: calc(96px / 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.logo {
  width: 128px;
}

@media (max-width: 767px) {
  body {
    padding: 24px;
  }

  h1 {
    font-size: 18px;
  }

  .fg {
    padding-top: calc(48px / 2);
  }

  .logo {
    width: 64px;
  }
}
