/* ── Google Fonts import ────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@400;500;600;700&display=swap');

:root{
  --disabled-opacity: 0.45;

  /* Spacings */
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;
  --width-container: 1600px;

  /* Colors */
  --background-dark: #2d3548;
  --text-light: rgba(255,255,255,0.6);
  --text-lighter: rgba(255,255,255,0.9);
  --ffbad-red: #D52B1E;
  --ffbad-red-light: #EF4D53;
  --ffbad-red-dark: #b1221d;
  --ffbad-blue: #101F69;
  --ffbad-blue-light: #7076AC;
  --ffbad-bg-light: #f1f0f1;
  --ffbad-grey: #555555;
  --ffbad-lightgrey: #dfdfdf;
  --ffbad-white: #ffffff;

  /* Decoration bar dimensions */
  --title-bar-w  : 42px;
  --title-bar-h  : 4px;
  --title-bar-r  : 3px;
}

*{
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  height: 100%;
  font-size: 14px;
}

body{
  height: 100%;
  color:#101F69;
  background-color: #F2F2F2;
}