/* ABCArizonaFlare-Bold */
@font-face {
  font-family: 'ABCArizonaFlare';
  src: url('../fonts/ABCArizonaFlare-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}
/* ABCArizonaFlare-BoldItalic */
@font-face {
  font-family: 'ABCArizonaFlare';
  src: url('../fonts/ABCArizonaFlare-BoldItalic.otf') format('opentype');
  font-weight: bold;
  font-style: italic;
}
/* ABCArizonaFlare-Medium */
@font-face {
  font-family: 'ABCArizonaFlare';
  src: url('../fonts/ABCArizonaFlare-Medium.otf') format('opentype');
  font-weight: 500; /* or whatever value 'Medium' represents */
  font-style: normal;
}
/* ABCArizonaFlare-MediumItalic */
@font-face {
  font-family: 'ABCArizonaFlare';
  src: url('../fonts/ABCArizonaFlare-MediumItalic.otf') format('opentype');
  font-weight: 500; /* or whatever value 'Medium' represents */
  font-style: italic;
}
/* ABCArizonaFlare-Regular */
@font-face {
  font-family: 'ABCArizonaFlare';
  src: url('../fonts/ABCArizonaFlare-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
/* ABCArizonaFlare-RegularItalic */
@font-face {
  font-family: 'ABCArizonaFlare';
  src: url('../fonts/ABCArizonaFlare-RegularItalic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}
/* NectoMono-Regular */
@font-face {
  font-family: 'NectoMono';
  src: url('../fonts/NectoMono-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
/* ---------------------------------------------------------------------------------------
Global CSS variables:
--------------------------------------------------------------------------------------- */

:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --font-base: "Work Sans", sans-serif;
  --font-size-base: 18px;
  --line-height-base: 24px;
  --font-main-title: 'ABCArizonaFlare', sans-serif;
  --font-etiqueta: 'NectoMono', monospace;
}

/* ---------------------------------------------------------------------------------------
Basic CSS properties:
---------------------------------------------------------------------------------------
- body
- body font
- strong
- titles (h1, h2, ..., h6)
--------------------------------------------------------------------------------------- */
body {
  width: 100vw;
  overflow-x: hidden !important;
  color: rgba(0, 0, 0, 0.8);
}
html, body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: normal;
}
strong{
  font-weight: 700;
}
body a{
  color: inherit;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'ABCArizonaFlare';
}
h1{
  font-family: 'ABCArizonaFlare';
  font-size: 54px;
  line-height: 60px;
  font-weight: 500;
}
h2{
  font-family: 'ABCArizonaFlare';
  font-size: 26px;
  line-height: 32px;
  font-weight: 500;
}
h3{
  font-family: 'ABCArizonaFlare';
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
}
h4{
  font-family: var(--font-base);
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}
h5{
}
h6{
}
