body {
	font-family: Arial, Helvetica, sans-serif;
}
form {
	display: flex;
	flex-direction: column;
	align-items: start;
}
input {
	margin: 10px;
	padding: 10px;
	width: 300px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
input[type='submit'],
.reset {
	margin: 10px;
	padding: 10px;
	width: 100px;
	background-color: #ccc;
	border: 1px solid #ccc;
	border-radius: 5px;
	cursor: pointer;
}
input[type='submit']:hover,
.reset:hover {
	background-color: #ddd;
}
#result {
	margin: 10px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	overflow-wrap: break-word;
}
