@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:ital,wght@0,400;0,700;1,600&display=swap');
}

@font-face {
  font-family: 'Vimland';
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Vimland.woff2) format('woff2');
}

:root {
	--font-primary: 'Montserrat', sans-serif;
	--font-secondary: 'Vimland', sans-serif;
	--color-primary: white;
	--color-body: black;
	--color-brand: #f4a462;
}

body {
	font-family: var(--font-primary);
	font-weight: 400;
	font-style: normal;
	font-size: 22px;
	color: white;
	background-color: black;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-secondary);
}

h1 {
	font-size: 56px;
}

h2 {
	font-size: 42px;
}

label {
	font-size: 16px;
}

a {
	padding-bottom: .375rem;
	border-bottom: 4px solid var(--color-brand);
	font-family: var(--font-primary);
	color: white;
	font-weight: 800;
	letter-spacing: .0625rem;
	line-height: 1.4;
	transition: .2s ease;
}

a:hover, a:focus {
	color: var(--color-brand);
	text-decoration: none;
}

.divider {
	width: 100%;
	height: 4px;
	background-color: white;
}

.claim-button {
	color: var(--color-body);
	border: 0;
	display: inline-block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 12px 36px 8px;
	font-weight: 700;
	font-size: 42px;
	background-color: #f2f2f2;
	font-family: var(--font-secondary);
	transition: background-color .1s ease-in-out;
}

.claim-button:focus,
.claim-button:hover {
	background-color: var(--color-brand);
}
