* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #050505;
  color: #fff;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

.share-button {
  width: 100vw;
  height: 100vh;
  border: 0;
  background: #050505;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: clamp(22px, 5vw, 48px);
  font-weight: 800;
}

.share-button.is-sharing {
  background: #111;
  font-size: clamp(18px, 3vw, 28px);
}

.status {
  position: fixed;
  left: 14px;
  top: 14px;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  pointer-events: none;
}
