/* css/base/elements.css */

:root {
  --bg-color: #F4F2EB; /* Светло-бежевый фон */
  --text-color: #000000;
  --brand-red: #E11A27;
  --footer-red: #B23333;
  --grey-bg: #E4E5E6;
  --font-main: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}