/* В этом файле будут храниться все значения переменных в исходном состоянии, а так же их изменения в зависимости от ширины устройства */
:root {
  --background-gradient: repeating-linear-gradient(
      to right,
      #d3d3d3 0px,
      #d3d3d3 2px,
      transparent 2px,
      transparent 4px
  ), repeating-linear-gradient(
      to top,
      #d3d3d3 0px,
      #d3d3d3 2px,
      transparent 2px,
      transparent 4px
  ), linear-gradient(to bottom, #e7e7e7, #1a1a1a);

  --accent-font: 'Press Start 2P', 'Courier New', monospace;
  --main-font: 'Inter-Variable', 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --main-color: #000;
  --background-color: #fff;
  --accent-color: #000;

  --animation-fill-color: #f00;
  --animation-contour-color: black;

  --border: 2px var(--accent-color) solid;
}