* {
  box-sizing: border-box;
}

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

body {
  align-items: center;
  background: var(--desk-bg);
  color: var(--ink-black);
  display: flex;
  font-family: "Inter", sans-serif;
  height: 100vh;
  height: 100svh;
  justify-content: center;
  overflow: hidden;
}

body.is-mobile-portrait {
  align-items: flex-start;
  justify-content: flex-start;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 14px 14px 88px;
  -webkit-overflow-scrolling: touch;
}

body.is-mobile-landscape {
  overflow: hidden;
  padding: 0;
}

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding-left: 1.25rem;
}

table {
  border-spacing: 0;
}

h1,
h2,
h3,
.serif {
  font-family: "Noto Serif SC", serif;
}

.bp-shell {
  align-items: center;
  display: flex;
  height: var(--scaled-slide-height);
  justify-content: center;
  width: var(--scaled-slide-width);
}

body.is-mobile-portrait .bp-shell {
  align-items: flex-start;
  flex: 0 0 auto;
  justify-content: flex-start;
}

.slide-stage {
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 10;
}
