:root {
  --accent: #6baed6;
  --gray: #808080;
  --gray-light: #b0b0b0;
  --white: #fff;
  --bg: #fafafa;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--gray);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}
