:root {
  --bg-default: #ffffff;

  --text-strong-950: #171717;
  --text-sub-600: #5c5c5c;
  --static-white: #ffffff;

  --font-primary: "Noto Sans Georgian", system-ui, sans-serif;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

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

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

body {
  display: flex;
  background-color: var(--bg-default);
  font-family: var(--font-primary);
  color: var(--text-strong-950);
}