body {
	margin: 0;
	padding: 10px;
	height: 100vh;
	width: 100vw;
	box-sizing: border-box;
	background: #0d0d0d;
	font-family: JetBrains Mono, monospace;
	display: flex;
	gap: 10px;
}

textarea, #response {
	background: none;
	border: 1px solid white;
	outline: none;
	resize: none;
	white-space: pre;
	overflow: auto;
	color: white;

}

#left, #right {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#left {
	width: calc(100vw * (3/13));
}

#right {
	width: calc(100vw * (10/13));
}

#left > textarea {
	flex: 1;
}

#data {
	flex: 1;
}

#response {
	flex: 3;
}

#api {
	max-height: 3.2em;
}

#final {
	max-height: 6.4em;
}