:root{
	--brand-1:#f1a006;
	--brand-2:#8269eb;
	--brand-3:#10b981;
	--ink:#1b2844;
	--bg:#e2e2e2;
	--max-width: 1500px;
	--padding: 150px;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.75;
	font-weight: 300;
	text-align: left;
}

.page-wrap {
	width: var(--max-width);
	margin: 0 auto;
	position: relative;
}

section {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.btn {
	display: inline-block;
	margin-top: 2rem;
	padding: 0.75rem 1.25rem;
	height: 1.5rem;
	gap: 2rem;
	text-decoration: none;
	font-weight: 600;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; margin-right: 1rem;
	background: var(--ink);
	color: rgb(255, 255, 255);
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
	position: relative;
	color: var(--ink);
	line-height: 1;
}

h2 {
	font-size: 1.25rem;
	margin-bottom: 3rem;
	margin-top: -5px;
	font-weight: 300;
	position: relative;
	color: var(--ink);
	line-height: 1;
}

p {
	font-size: 18px;
	max-width: 550px;
	text-align: left;
	font-weight: 200;
	position: relative;
	line-height: 1.5;
}

/* Hero section */
.hero {
	margin-top: 20%;
	margin-bottom: 20%;
}

.hero .inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding-left: calc(2 * var(--padding));
}

/* Navbar */
nav {
	padding-left: var(--padding);
	padding-right: var(--padding);
	position: sticky;
	top: 0;
	background: #ffffff00;
}

nav .title {
	font-family: 'Tinos';
	font-weight: bold;
	font-size: 3rem;
	font-style: italic;
}


