:root {
  /* Шрифты */
  --font-main: 'Inter', sans-serif;
  --font-accent: 'PressStart2P', fantasy;

  /* Веса шрифтов */
  --font-weight-text: 410;
  --font-weight-title: 715;

  /* Цвета */
  --color-background: #1A1A1A;
  --color-card-bg: #fff;
  --color-card-text: #000;
  --color-label-stroke: #fff;

  /* Анимация сердца */
  --contour-color: #000;
  --animation-fill-color: #FF0000;

  /* Фон - градиент */
  --bg-gradient: 
    repeating-linear-gradient(
      90deg,
      #d3d3d3 0px,
      #d3d3d3 2px,
      transparent 2px,
      transparent 4px
    ),
    repeating-linear-gradient(
      180deg,
      #d3d3d3 0px,
      #d3d3d3 2px,
      transparent 2px,
      transparent 4px
    ),
    linear-gradient(
      180deg,
      #e7e7e7 0%,
      #e7e7e7 0.01%,
      #1a1a1a 100%
    );

  --content-width: clamp(375px, 100%, 700px);
}
