body {
	display: flex;
	flex-direction: column;
	height: 100vh;
	margin: 0;
	font-family: sans-serif;
}

.input-group {
	display: flex;
	flex-direction: column;
	grid-gap: 10px;

	label {
		font-weight: bold;
		font-size: 20px;
		text-align: center;
	}
}

#params {
	display: flex;
	padding: 20px;
	grid-gap: 20px;
	flex-direction: column;
	align-items: center;
	background: #eeeeee;

	.inputs {
		display: flex;
		grid-gap: 20px;
		justify-content: center;
	}
}

#render {
	display: flex;
	justify-content: center;
	flex-grow: 1;
	min-height: 100px;
	padding: 20px;

	svg {
		height: 100%;
		width: 100%;
	}
}
