@font-face {
	font-display: fallback;
	font-family: custom;
	font-weight: normal;
	src: url(/images/fonts/custom.woff2) format('woff2');
}
@font-face {
	font-display: fallback;
	font-family: custom;
	font-weight: bold;
	src: url(/images/fonts/custom-bold.woff2) format('woff2');
}

body {
	color: rgb(225,225,225);
	background: rgb(25,25,25);
	font-family: custom, system-ui, Helvetica, Arial, sans-serif;
	margin: 0;
}

main {
	max-width: 44em;
	margin: 0 auto;
	padding: 2.5em 0.8em;
}

h1, h2, h3, h4, h5, h6 {
	color: rgb(225,225,225);
}
h1 {
	text-align: center;
}
h2, h3, h4, h5, h6 {
	font-weight: bold;
	font-size: 1.2em;
	margin-bottom: 0em;
}
h2 + p {
	margin-top: 0.6em;
}
h2 {
	margin-top: 2.5em;
}

p {
	color: rgb(200,200,200);
}

a {
	color: rgb(225,225,225);
	font-weight: bold;
}
a:hover {
	color: rgb(225,225,225);
}

.center {
	text-align: center;
}

.google-form {
	margin-top: 2em
}

input,
textarea {
	font-size: 1em
}

select {
	font-size: .9em
}

input[type=text],
input[type=email],
select,
textarea {
	outline: none;
	display: block;
	border: 1px solid rgb(200,200,200);
	border-radius: .5em;
	background: #fff;
	box-sizing: border-box;
	width: 100%;
	padding: .5em;
	margin: 0 0 1.5em;
	resize: vertical;
	-webkit-appearance: none;
	-moz-appearance: none;
	transition: outline .15s, box-shadow .15s
}

textarea:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=select]:focus {
	outline: 2px solid rgb(0, 100, 250);
	box-shadow: 0 0 .5em rgba(0, 100, 250, .4) inset
}

label {
	padding: 0;
	margin: 0 .25em;
	display: inline-block;
}

.button {
	border-radius: 0.4em;
	padding: 1em 2em;
	cursor: pointer;
}

.send {
	float: right;
	border: none;
	outline: none;
	color: rgb(25,25,25);
	font-weight: bold;
	background-color: rgb(250,200,0);
	transition: backround .2s, background-color .2s,
				margin .2s, text-shadow .2s
}

.send:hover {
	color: white;
	background-color: rgb(50,175,50);
	margin-top: -0.4em;
}

.contact select {
	display: block;
	width: 50%;
	text-align: left;
	cursor: pointer
}

.contact option {
	cursor: pointer
}

.small {
	font-size: 0.9em;
	color: rgb(150,150,150);
}