/* :root *******************************/

:root {
	--color-dark: #333;
	--color-light: #f7f7f7;
	--color-gray: #ccc;
	--color-danger: #DC3545;
	--color-success: #198754;
	--color-warning: #ffc107;
	--color-background: #fff;
	--color-text: #222;
	--color-subtle: #4E5965;
	--color-link: #005e7a;
	--color-brand-primary: #14b199;
	--color-brand-secondary: #0b3259;
	--color-brand-dark: #1E3E62;
	--color-brand-blue: #005273;
	--color-brand-blue-1: #1d4d64;
	--color-brand-blue-2: #296582;
	--color-brand-blue-3: #48839c;
	--color-brand-green: #2E7D32;
	--color-brand-green-1: #569875;
	--color-brand-green-2: #9cc2ae;
	--color-brand-red: #c6503d;
	--color-input-bg: #f8f9fa;
	--color-input-border: #ccc;
	--color-input-shadow: 0 0 0 5px #cff4fc;
	--font-default: "Inter", sans-serif;
	--font-brand: "UnifrakturMaguntia";
	--font-headline: "Source Serif 4";
	--css-border-radius: 3px;
}

body {
	background-color: var(--color-background);
	color: var(--color-text);
	font-family: var(--font-default);
	font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 0;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

a {
	color: var(--color-link);
	transition: all ease 0.2s;

	&:hover {
		color: var(--color-link);
		text-decoration: none;
	}

	&:focus {
		outline: 1px dashed #999;
		outline-offset: 5px;
	}
}

button {
	background: transparent;
}

img {
	border-radius: 3px;
	height: auto;
	width: 100%;
}

p {
	margin-bottom: 0;
}

label {
	font-weight: 600;
	margin-bottom: 5px;
}

ul {
	margin: 0;

	li {
		margin: 0;
		padding: 0;

		&::marker {
	  	color: var(--color-brand-primary);
			font-size: 1.3rem;
			line-height: 1.3rem;
		}
	}
}
