* {
	box-sizing: border-box;
	font-family: "Nimbus Mono PS", "Courier New", monospace;
	font-weight: normal;
}
html {
	font-size: 16px;
}
body {
	display: flex;
	flex-direction: column;
	align-items: left;
	max-width: 50vw;
	margin: 0 auto;
	gap: 1rem;
	margin-top: 2rem;
}
label {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
#inputs {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	justify-content: space-between;
}
#inputs > label {
	flex: 1;
}
#send {
	padding: 0.5rem 1rem;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 0.25rem;
	cursor: pointer;
}
