* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background-color: #1a1a1a;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-image: url("/background.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.logo {
  position: relative;
  z-index: 1;
  width: 85vw;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.copyright {
  position: absolute;
  bottom: max(4vh, calc(env(safe-area-inset-bottom) + 16px));
  left: 50%;
  transform: translateX(-50%);
  width: clamp(220px, 26.4vw, 600px);
  height: auto;
  z-index: 1;
  user-select: none;
  -webkit-user-drag: none;
}
