/* В этом файле будут храниться все значения переменных в исходном состоянии, а так же их изменения в зависимости от ширины устройства */
:root {
  --main-font: "Inter-Variable", sans-serif;
  --accent-font: "PressStart2P", fantasy;

  --text-weight: 400;
  --title-weight: 785;

  --page-background:
    repeating-linear-gradient(
      to right,
      #d3d3d3 0 2px,
      transparent 2px 4px
    ),
    repeating-linear-gradient(
      to bottom,
      #d3d3d3 0 2px,
      transparent 2px 4px
    ),
    linear-gradient(
      to bottom,
      #e7e7e7 0.01%,
      #1a1a1a 100%
    );

  --accent-color: #000;
  --background-color: #fff;
  --content-width: clamp(23.4375rem, 16.285rem + 30.5164vw, 43.75rem);
  --card-title-size: 18px;
  --card-text-size: 18px;
  --button-text-size: 14px;
  --label-stroke-color: #fff;
  --contour-color: #000;
  --animation-fill-color: #f00;
  --label-text-color: #000;
}