/* В этом файле будут храниться все значения переменных в исходном состоянии, а так же их изменения в зависимости от ширины устройства */
:root {
  --font-base: "Inter", sans-serif;
  --font-accent: "Press Start 2P", fantasy;
  --font-weight-regular: 410;
  --font-weight-title: 715;
  --bg-gradient: repeating-linear-gradient(
      to right,
      #d3d3d3 0 2px,
      transparent 2px 4px
    ),
    repeating-linear-gradient(to bottom, #d3d3d3 0 2px, transparent 2px 4px),
    linear-gradient(#e7e7e7 0.01%, #1a1a1a);
  --color-secondary: #000;
  --layout-max-width: clamp(375px, calc(260.56px + 30.5164vw), 700px);
  --color-bg: rgba(255, 255, 255, 1);
  --color-text: rgba(0, 0, 0, 1);
  --border-base: 2px solid var(--color-secondary, #000);
  --font-size-bases: 18px;
  --animation-fill-color: red;
}
