/* Fuente primaria */
@font-face {
  font-family: "a_love_of_thunder";
  font-style: normal;
  src: url("fonts/a_love_of_thunder-webfont.woff2") format("woff2"), url("fonts/a_love_of_thunder-webfont.woff") format("woff");
  font-display: swap;
}

/* Fuente secundaria */
@font-face {
  font-family: "poppins";
  font-style: normal;
  src: url("fonts/poppins.woff2") format("woff2"), url("fonts/poppins.woff") format("woff");
  font-display: swap;
}

:root {
  /* COLOR */
  --orange: #FF8800;
  --yellow: #FFEE00;
  --green: #006B35;
  --dark-green: #01552B;
  --light-green: #7BF37C;
  --white: #ffffff;
  --black: #000000;
  /* FONT */
  --primary-font: 'a_love_of_thunder';
  --secondary-font: 'poppins';
  /* LAYOUT */
  --max-width: min(95%, 1320px);
}

/* RESETS */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--primary-font);
}

p, li, a, span {
  font-family: var(--secondary-font);
}

/*Admin Actions*/

.dnnModuleDialog {
  top: 10% !important;
}

.dnnEditState header {
  position: relative;
  z-index: 0;;
}

/* LAYOUT */

.container {
  width: 100%;
  margin: 0 auto;
  max-width: var(--max-width);
}