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

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

body {
  min-height: 100dvh;
  background: #ffffff;
  color: #111;
}

.stage {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
}

.logo {
  display: block;
  width: min(70vw, 360px);
  height: auto;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}
