* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	font-size: 10px;
	transition: font-size 1s;
}

body {
	height: 100%;
	padding: 10rem 0;
	margin: 0 auto;
	width: 76rem;
	box-sizing: border-box;

	font-family: Helvetica, Arial;
	word-wrap: break-word;
	color: #555;
	background: white;
}

table {
	table-layout: fixed;
	border-collapse: collapse;
	width: 100%;
}

h1, h2, h3 {
	color: black;
}

h1 {
	font-size: 3rem;
	margin: 0 0 3rem;
}

h2 {
	font-size: 2.2rem;
	margin: 2rem 0 1rem;
}

p, ul {
	margin: 1rem 0;
}

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

a:hover {
    border-bottom: 1px dotted firebrick;
}

h3, p, li, button, input {
	font-size: 1.6rem;
}

table {
	margin: 1rem 0;
}

td, th {
	font-size: 1.4rem;
	text-align: left;
	padding: 0.5rem;
	padding-left: 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

button, input {
    display: inline-block;
	padding: 1rem;
	margin-right: 0.5rem;
	border: 1px solid #999;
	border-radius: 0.3rem;
}

button {
	background-color: burlywood;
	color: white;
	cursor: pointer;
}

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

[disabled] {
	opacity: .3;
	cursor: not-allowed;
}


@media (min-width: 1200px) {

	html {
		font-size: 12px;
	}
}



@media (max-width: 768px) {

	body {
		width: auto;
		margin: 0;
		padding: 4rem 2rem
	}

	html {
		font-size: 9px;
	}
}