/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mada:wght@400;500;600;700&display=swap');

/* ============= */

/* VARIABLES */
:root {
	--textColor: rgb(20, 24, 36);
	--mainWhite: #fff;
	--offWhite: #f7f7f7;
	--mainBlack: #222;
	--mainGrey: #ececec;
	--darkGrey: #afafaf;
	--headerColor: #ffb600e6;
	--primaryColor: #ffb600;
	--mainTransition: all 0.3s linear;
	--mainSpacing: 0.3rem;
	--lightShadow: 2px 5px 3px 0px rgba(0, 0, 0, 0.5);
	--darkShadow: 4px 10px 5px 0px rgba(0, 0, 0, 0.5);
	--mainBorderRadius: 0.25rem;
  }

/* ========== */

/* GLOBAL VARIABLES */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	color: var(--textColor);
}
/* ========== */

html {
	scroll-behavior: smooth;
}

body {
	width: 100%;
	height: 100%;
	line-height: 1.4;
	font-size: 1rem;
	font-weight: 300;
	/* background-color: var(--textColor); */
	overflow-x: hidden;
	font-family: 'Mada', sans-serif;
	font-family: 'Crimson Text', serif;
}

h2{
	font-size: 2.5rem;
	line-height: 1;
}
h1{
	line-height: 1;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Mada', sans-serif;
}

button, input, a, textarea {
	font-family: 'Crimson Text', serif;
}