/*----- VARIABLES - Open -----*/
:root {
	--color-primary: #2192e8;
	--color-secondary: #f15a24;

	--color-dark: #0d3354;
	--color-darker: #09233a;
	--color-light: #edf5fb;

	--color-black: #000000;
	--color-white: #ffffff;

	--color-text: #333333;
	--color-heading: #121f28;

	--color-gray-100: #f5f5f5;
	--color-gray-200: #e0e0e0;
	--color-gray-300: #bdbdbd;
	--color-gray-400: #9e9e9e;
	--color-gray-500: #757575;
	--color-gray-600: #616161;
	--color-gray-700: #424242;
	--color-gray-800: #303030;
	--color-gray-900: #212121;

	--primary-font-family: 'Inter', sans-serif;
	--secondary-font-family: 'Inter', sans-serif;
}
/*----- VARIABLES - Close -----*/

/*----- SETUP - Open -----*/
body {
	color: var(--color-text);
	cursor: default;
	font-family: var(--primary-font-family);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--aero-heading);
	font-family: var(--primary-font-family);
	font-weight: 700;
	font-style: normal;
	line-height: 1.3;
	margin-bottom: 1rem;
}

/*----- SETUP - Close -----*/

/*----- CONTENT - Open -----*/
#presentation-region {
	background-color: var(--color-gray-200);
}
.homepage #presentation-region {
	background-color: var(--color-gray-200);
	min-height: 80vh;
}
/*----- CONTENT - Close -----*/

/*----- DRUPAL - Open -----*/
#page .messages__wrapper {
	background-color: var(--color-white);
	margin: 1rem 0;
	padding: 1rem;
	border: 1px solid var(--color-gray-200);
}
/*----- DRUPAL - Close -----*/

/*----- TRANSITION - Open -----*/
#edit-cancel,
input[type='submit'],
a {
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}
/*----- TRANSITION - Close -----*/
