/* static\css\backbone\backbone_root.css
   =========================================================
   Version 1.0.0
   ==============
   Where we keep color, size and other to make our website unique.

   ========================================================= */

/* =========================================================
   01. ROOT TOKENS
   ========================================================= */
:root {
  --pg_bg: rgb(255, 255, 255);

  --text_p_color: #2b2926;
  --text_strong_color: #171614;

  --border_color: #d8d2c9;
  --border_radius: 10px;
}


* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: var(--pg_bg);
  color: var(--text_p_color);
}

body,
button,
input,
select,
textarea,
option,
optgroup {
  font-family: "Times New Roman", Times, serif;
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text_strong_color);
}

p {
  color: var(--text_p_color);
}

