@font-face {
	font-family: AgenorNeue;
	src: url('/assets/AgenorNeue-Regular.otf');
}

@font-face {
	font-family: Quicksand;
	src: url('/assets/Quicksand_Book.otf');
}

/* BASIC */
html {
	width: 100%;
	height: 100%;
}

form {
	padding: 0;
	margin: 0;
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-family: Quicksand;
	font-size: 16px;
	color: #fff;
	background-color: #333;
}

h1::first-letter, h2::first-letter, h3::first-letter, label::first-letter, button::first-letter, div::first-letter, select::first-letter, option::first-letter {
	text-transform: uppercase;
}

h1 {
	font-size: 3em;
}

h2 {
	font-size: 2.5em;
}

h3 {
	font-size: 2em;
}

h1, h2, h3 {
	margin: 0 0 15px 0;
}


label {
	font-weight: 600;
}

input {
	font-family: Quicksand;
	padding: 5px;
	color: #ccc;
	background-color: rgba(0, 0, 0, 0.5);
	border: 1px solid #999;
	border-radius: 5px;
}

button {
	margin: 1px;
	padding: 5px 10px;
	background-color: #306;
	border: none;
	border-radius: 5px;
	color: #fff;
	font-family: Quicksand;
	font-weight: 600;
	font-size: 1.25em;
}

button:hover {
	background-color: #666;
}

select {
	font-family: Quicksand;
	padding: 5px;
	color: #ccc;
	background-color: rgba(0, 0, 0, 0.5);
	border: 1px solid #999;
	border-radius: 5px;
}

.basegrid {
	display: grid;
	grid-template-columns: 200px auto;
	gap: 5px;
}