:root {
  --main-bg: #EBEBEF;
  --secondary-bg: #DCE0E6;
  --text: #1C2930;
  --contrast: #37505d;
  --button-text: #ffffff;
}

@font-face {
	font-family: Inter;
	src: url(../fonts/Inter/Inter-V.ttf);
}

body {
    background: var(--main-bg);
	color: var(--text);
	font-family: 'Inter', sans-serif;
	font-size: 16pt;
	font-weight: 300;
	letter-spacing: 0.01em;
	line-height: 1.5em;
	margin: 0;
}
a:link, a:visited {
	color: var(--white);
	font-weight: 400;
	text-decoration: none;
}
h2 {
	font-weight: 400;
	font-size: 2.5rem;
	margin-bottom: 80px;
}
h3 {
	font-size: 1.2rem;
}
header {
	padding: 1.5rem 5rem;
}
header a:link, header a:visited {
	font-size: 1.1rem;
	/*font-family: Jost, sans-serif;*/
}
header img {
	width: 60px;
}
#logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.heading {
	font-size: 1.1rem;
	padding: 4rem 4rem 9rem;
	margin-left: auto;
    margin-right: auto;
    max-width: 600px;
	font-weight: 400;
}
.heading h1 {
	margin: 20px 20px 50px;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 3rem;
	text-align: center;
}
.heading h2 {
	text-align: center;
}

.button {
	text-align: center;
}
.button a {
	background-color: var(--contrast);
	color: var(--button-text);
	border-color: var(--contrast);
	padding: 0.7rem 2.4rem;
	border-radius: 4px;
	display: inline-block;
	cursor: pointer;
	font-size: 0.8rem;
	margin-top: 30px;
}

article {
	background-color: var(--secondary-bg);
}

.full-width {
	text-align: center;
}
.full-width img {
	max-width: 100%;
	vertical-align: bottom;
}

section {
	text-align: center;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	padding: 3rem;
}
section p {
	font-size: 1.1rem;
	font-weight: 400;
}
section p, h3 {
	text-align: left;
}

.asterisk h3:before {
			content: '';
			width: 1.5rem;
			height: 3rem;
			background: var(--contrast, currentColor);
			clip-path: path('M11.93.684v8.039l5.633-5.633 1.216 1.23-5.66 5.66h8.04v1.737H13.2l5.701 5.701-1.23 1.23-5.742-5.742V21h-1.737v-8.094l-5.77 5.77-1.23-1.217 5.743-5.742H.842V9.98h8.162l-5.701-5.7 1.23-1.231 5.66 5.66V.684h1.737Z');
			display: block;
}
.asterisk h2:before {
			content: '';
			width: 1.5rem;
			height: 3rem;
			background: var(--contrast, currentColor);
			clip-path: path('M11.93.684v8.039l5.633-5.633 1.216 1.23-5.66 5.66h8.04v1.737H13.2l5.701 5.701-1.23 1.23-5.742-5.742V21h-1.737v-8.094l-5.77 5.77-1.23-1.217 5.743-5.742H.842V9.98h8.162l-5.701-5.7 1.23-1.231 5.66 5.66V.684h1.737Z');
			display: block;
			margin: 0 auto;
}

footer img {
	width: 50px;
}
footer p {
	margin: 5px;
}
footer {
	padding: 3rem 5rem;
	font-size: 1.1rem;
}

