:root {
  --brand: #028760;
  --brand-strong: #01875f;
  --brand-dark: #016e4b;
  --install-button-bg: #118a5c;
  --install-accent: #ffe336;
  --text: #202124;
  --muted: #5f6368;
  --subtle: #606569;
  --line: #dadce0;
  --line-soft: #ebebeb;
  --surface: #ffffff;
  --scrim: rgba(0, 0, 0, 0.5);
  --page-width: 750px;
  --radius: 8px;
  --font: Roboto, Arial, Helvetica, sans-serif;
}

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

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0 auto;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  max-width: var(--page-width);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

img,
svg,
canvas {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

ul {
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

body.is-modal-open {
  overflow: hidden;
}
