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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

#app {
  width: 100%;
  max-width: var(--max-width);
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}
