@charset "UTF-8";

html {
	background-color: rgb(244, 226, 200);
}

body {
	font-family: "Avenir Next";
	padding: 5px;
	background-color: rgb(244, 226, 200);
	font-size: xx-small;
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

input[type="text"],
input[type="password"],
input[type="number"] {
	border: 1px solid gray;
}

input[type="submit"] {
	color: white;
	font-weight: bold;
	background-color: orange;
	border: 1px solid darkorange;
	border-radius: 5px;
	padding: 2px 10px;
}

main {
	max-width: 500px;
	margin: auto;
}