* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}

a {
	border-bottom: 1px solid;
	color: #4ECDC4;
	text-decoration: none;
}

html {
	background: #FAFAFA;
}

html,
input,
button {
	font-family: Roboto, Arial, sans-serif;
	font-size: 16px;
}

body > div {
	width: 100%;
	padding: 15px 10px;
	border-top: 5px solid #C7F464;
	background: #FAFAFA;
}

body > div i {
	float: right;
	font-size: 60px;
	font-style: unset;
}

label {
	cursor: pointer;
}

input {
	width: 100%;
	margin-bottom: 15px;
	padding: 10px 20px;
	border: 1px solid #556270;
	transition: border .2s;
}

label:hover + input,
input:hover,
input:focus {
	border-color: #4ECDC4;
}

.copy {
	position: relative;
}

.copy input {
	margin: 0;
	padding: 5px;
	font-size: 16px;
	background: transparent;
	cursor: default;
}

.copy:hover::after {
	content: '\1F4CB';
	position: absolute;
	top: 1px;
	right: 1px;
	bottom: 1px;
	padding: 5px 10px;
	background: #EEE;
	cursor: pointer;
}

.copy:hover input {
	padding-right: 30px;
}

a.button,
button {
	display: inline-block;
	width: 100%;
	padding: 6px 10px;
	text-align: center;
	color: #FFF;
	background: #556270;
	transition: background .2s;
	cursor: pointer;
}

a.button:hover,
a.button:focus,
button:hover,
button:focus {
	background: #4ECDC4;
}

table {
	width: 100%;
	margin-top: 25px;
	text-align: center;
	border-collapse: collapse;
}

table tr th,
table tr td {
	padding: 6px 10px;
	transition: background .2s;
}

table tr td {
	word-wrap: anywhere;
}

table tr .count {
	width: 60px;
}

table tr:nth-child(2n + 1) td {
	background: #EEE;
}

table tr:hover td {
	background: #DDD;
}

p {
	margin-bottom: 15px;
}

p.error {
	padding: 5px 10px;
	border: 1px solid #C44D58;
	color: #FFF;
	background: #FF6B6B;
}

@media (min-width: 800px) {
	html {
		background: transparent;
	}

	body > div {
		width: 700px;
		margin: 15vh auto 15px;
		padding: 30px 50px;
	}
}