/* =========================
   GLOBAL SETTINGS
   ========================= */
html {
  scroll-behavior: smooth;
}

/* Makes padding and border part of the element size so width and height stay fixed */
/* Делает так, что padding и border входят в заданную ширину и высоту,
   чтобы размер элемента оставался фиксированным */
* { 
  box-sizing: border-box; 
}

body 
{
  /* Layout */
  width: 100%; 
  margin: 0; 
  padding: 0; 

  /* Typography */
  font-family: system-ui, Arial, sans-serif; 
  font-size: 1rem;
  line-height: 1.5; 

  /* Visual Styling */
  background-color: #513C37; 
}

/* Design tokens */
:root {
  --header-height: 64px;
}