/*
 * Path: /databass/css/001-layout.css
 * ------------------------------------------------------------
 * Global layout + root HTML/body styling
 */

html {
  background: var(--databass-bg1) !important;
  background-size: cover;
  color: var(--databass-color-text);

  font-family: var(--databass-font-family);
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-size: 1rem !important;

  /* Font rendering optimisations */
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;         /* macOS Firefox */
  font-smooth: always;                        /* Windows browsers */
  text-rendering: optimizeLegibility;         /* ligatures & kerning */
  -webkit-text-size-adjust: 100%;             /* prevent unwanted zoom */
  -webkit-text-stroke: 0.2px transparent;     /* reduce jagged edges */
}

body {
  background: none !important;
  background-color: transparent !important;
  height: 100vh;
}
