@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&display=swap');
*{
	padding: 0;
	margin: 0;
	font-family: 'Nunito',Roboto,-apple-system, BlinkMacSystemFont, "Segoe UI";
}

html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	background-color: #f1f1f1;
	box-sizing: border-box;
}

a {
	color:black;
	text-decoration: none;
}


label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

