:root {
	--vh: 1vh;
	--font: "Delicious Webfont";
	--primary: #e22672;
	--gray-darkest: #2D3A3C;
	--gray-dark: #3b5356;
	--gray: #c5d1d2;
	--gray-medium: #DBE2E3;
	--gray-light: #e0e6e7;
	--gray-lighter: #f3f6f8;
	--gray-lightest: #f9fafb;
	--text: var(--gray-dark);
	--modal-dim: rgba(219, 226, 227, 0.86);
	--modal-bg: white;
	--border-radius: 4px;
}

*, *:before, *:after {
	box-sizing: border-box;
}

::selection {
	background: var(--primary);
	color: #fff;
	text-shadow: none;
}

html, body {
	padding: 0;
	margin: 0;
	font-family: var(--font);
	color: var(--text);
	font-size: clamp(16px, 1.27vw, 19px);
	line-height: 1.4;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
	font-weight: 800;
	font-family: var(--font);
}

a {
	color: var(--primary);
	text-decoration: none;
	cursor: pointer;
}

a:hover {
	text-decoration: underline;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	background: var(--gray-darkest);
	border: 0 none;
	border-radius: var(--border-radius);
	padding: 0.5rem 0.8rem;
	font-size: 0.9rem;
	color: white;
	font-family: inherit;
	font-weight: bold;
	cursor: pointer;
}

.btn:hover {
	text-decoration: none;
	opacity: 0.9;
}

.btn:active {
	opacity: 1;
}

.btn.btn-primary {
	background: var(--primary);
	color: white;
}

.btn.btn-pill {
	border-radius: 100px;
	padding: 0.7rem 1.5rem;
}

/* Gate page */
.gate-body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background: var(--gray-lightest);
}

.gate-content {
	max-width: 760px;
	text-align: center;
	padding: 2rem 1rem;
}

.gate-logo {
	width: 70px;
}

.gate-title {
	margin-top: 0.5em;
}

.gate-description {
	opacity: 0.8;
	text-align: center;
	hyphens: auto;
}

.gate-action {
	margin-top: 1.25rem;
}
