@media screen and (max-width: 360px) {
	#result {
		height: 330px;
	}
	#char-size {
		width: 200px;
	}
}
@media screen and (min-width: 361px) and (max-width: 767px) {
	#result {
		height: 420px;
	}
	#char-size {
		width: 200px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
	#result {
		height: 500px;
	}
	#char-size {
		width: 250px;
	}
}

@media screen and (min-width: 1001px) {
	#result {
		height: 650px;
	}
	#char-size {
		width: 350px;
	}
}

#char-size {
	display: inline-block;
	margin: 0 7px;
}

#result {
	width: 100%;
	font-family: "";
}
