/* CSS mini reset */
html,
body,
div {
	margin: 0;
	padding: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th,
td {
	text-align: left;
	vertical-align: top;
}
h1,
h2 {
	font-weight: normal;
}
a {
	text-decoration: none;
}
:focus,
:active {
	outline: none;
}
* {
	box-sizing: border-box;
}

/* Page style */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,700;1,300&display=swap');
body {
	margin: 2%;
	background: #e9eaed;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #4b4f56;
}
h1 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
}
h2 {
	font-size: 14px;
	font-weight: 700;
}
a {
	color: #039be5;
}
a:hover {
	text-decoration: underline;
}
p {
	line-height: 1.5;
}
p code {
	color: #42b72a;
	font-family: Consolas, monospace;
}
p span {
	color: #999;
	font-weight: 300;
}
#container {
	width: 100%;
	max-width: 680px;
	margin: auto;
	overflow: hidden;
	background: #fff;
	border: 1px solid;
	border-color: #eff0f1 #dfe0e4 #d0d1d5 #dfe0e4;
	border-radius: 4px;
}
#header {
	display: block;
	padding: 5% 0 5% 15%;
	color: #fff;
	background: url(google.svg) 5% 50% no-repeat #3367d6;
	background-size: 8%;
	text-decoration: none;
}
#header p {
	margin: 0;
	font-weight: 300;
}
#content {
	padding: 5%;
}
#content #demo {
	padding: 2%;
	text-align: center;
	font-weight: 300;
}
#content #demo a {
	display: inline-block;
	width: 240px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	background: #4285f4;
	border-radius: 1px;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .25);
	transition: background-color .218s, border-color .218s, box-shadow .218s;
}
#content #demo a span {
	display: block;
	float: left;
	width: 48px;
	height: 48px;
	margin: 1px;
	border-radius: 1px;
	background: url(google.svg) 50% no-repeat #fff;
	background-size: 19px;
}
#content #demo a:hover {
	box-shadow: 0 0 3px 3px rgba(66, 133, 244, .3);
}
#content #demo a:active {
	background-color: #3367d6;
}

/* Tables */
table {
	width: 100%;
	border: 1px solid #cececc;
	border-collapse: collapse;
}
table th,
table td {
	padding: 2%;
	border-left: 1px solid rgba(0, 0, 0, .1);
}
table th {
	background: #f6f7f8;
	border-bottom: 1px solid #cececc;
	font-weight: 700;
	text-shadow: 0 1px 0 #fff;
}
table td {
	font-size: 11px;
	width: 57%;
	max-width: 0;
	overflow: hidden;
	overflow-x: auto;
	white-space: nowrap;
}
table th:first-child,
table td:first-child {
	border-left: none;
}
table td:nth-child(1) {
	width: 17%;
}
table tr:nth-child(even) {
	background-color: #f6f7f8;
}

/* Responsive */
@media (max-width:768px) {

	body,
	h2 {
		font-size: 11px;
	}

	h1 {
		font-size: 16px;
	}
}