/* =========================================================
   MELLIZO ROLDÁN – BASE STYLES
========================================================= */

/* =========================================================
   CSS VARIABLES
========================================================= */

:root {

	--color-grafito: #333333;
	--color-ivory: #f4f1ef;

	--color-magenta: #f94997;
	--color-naranja: #f97835;
	--color-amarillo: #ffff00;
	--color-verde: #e9fcb4;
	--color-turquesa: #00acc3;
	--color-azul: #698cf9;
	--color-morado: #b799ff;

	--font-primary: 'Aller', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

	--font-weight-regular: 400;
	--font-weight-bold: 700;

	--line-height-base: 1.5;
	--line-height-tight: 1.1;

	--container-max: 1600px;
	--container-padding: 1.5rem;

	--transition-base: 0.3s ease;
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

body {
	margin: 0 !important;
	padding: 0 !important;
	max-width: none !important;
}


/* =========================================================
   BODY
========================================================= */

body {
	font-family: var(--font-primary);
	font-weight: var(--font-weight-regular);
	line-height: var(--line-height-base);
	color: var(--color-grafito);
	background-color: var(--color-ivory);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
}

p {
	margin: 0;
}

/* =========================================================
   LINKS
========================================================= */

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-base);
}

a:hover {
	color: var(--color-magenta);
}

/* =========================================================
   LAYOUT
========================================================= */

.site-main {
	width: 100%;
	min-height: 100vh;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
	outline: 2px solid var(--color-magenta);
	outline-offset: 2px;
}


.site-footer {
    /* padding-block-end: 1rem; */
    /* padding-block-start: 1rem; */
    /* position: relative; */
    display: none;
}


@font-face {
	font-family: 'Aller';
	src: url('../assets/fonts/aller-light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Aller';
	src: url('../assets/fonts/aller-light-italic.ttf') format('truetype');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Aller';
	src: url('../assets/fonts/aller-regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Aller';
	src: url('../assets/fonts/aller-italic.ttf') format('truetype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Aller';
	src: url('../assets/fonts/aller-bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Aller';
	src: url('../assets/fonts/aller-bold-italic.ttf') format('truetype');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}


body {
  font-family: 'Aller', sans-serif;
}


body {
  font-family: 'Aller', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Aller', sans-serif;
  font-weight: 700;
}
