:root 
{
	--primary-bg-color: #ECF0F1;
	--secondary-bg-color: #2D2D2D;
	--accent-color: #FF24CA;
}

html, body {
	position: relative;
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
	background-color: var(--primary-bg-color);
	font-family: Helvetica,Arial,sans-serif;
	font-size: 20px;
	font-weight: normal;
	font-style: normal;
	overflow-x: clip;
}

h1 {
	font-weight: normal;
	text-transform: uppercase;
	margin: 0px;
}

@font-face {
	font-family: 'agencyregular';
	src: url('fonts/agencyfb-reg-webfont.woff') format('woff'),
		 url('fonts/agencyfb-reg-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
	color: var(--secondary-bg-color);
	margin: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
	text-decoration: none;
	color: var(--secondary-bg-color);
}

a:hover {
	color: var(--accent-color);
}

label {
	display: block;
}