* {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: top;
	color: inherit;
	line-height: inherit;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
    text-align: inherit;
	box-sizing: border-box;
}
html,
body {
	height: 100%;
	width: 100%;
}
body {
	background-color: #000;
	color: #9f0;
	line-height: 16px;
	font-size: 10px;
	font-family: monaco, monospace;
	font-weight: normal;
	padding: 16px;
}
.container {
    text-align: center;
}
canvas {
    border: 1px solid #333;
}
button {
    padding: 4px;
    border: 1px solid #333;
    background-color: transparent;
}
button:hover {
    background-color: #fff2;
}
button:active {
    background-color: #f906;
}
input {
	background-color: #333;
}
.canvas-holder video, 
.canvas-holder canvas {
	/* display: block; */
	min-width: 512px;
	max-width: 512px;
}

.form-field label {
	display: block;
	text-align: left;
}
.form-field label span {
	display: block;
}
.form-field label input,
.form-field label button,
.form-field label select {
	display: inline-block;
	background-color: #0008;
	border: 1px solid #6668;
}
.form-field label input[type="number"] {
	width: 5rem;
}
.form-field label input[type="range"] {
	width: calc(50% - 10rem);
}
.canvas-holder {
	user-select: none;
}

/* dragable windows */
.dragable-window-holder {
	position: relative;
	margin: -16px; /* because the body has a positive 16 px padding */
}
.dragable-window {
	position: absolute;
	border: 10px solid rgb(62, 197, 62);
}
.title-bar {
	position: relative;
	text-align: right;
	background-color: brown;
	border: 10px solid rgb(62, 85, 197);
}
.title-bar button.close {
	aspect-ratio: 1;
	background-color: rgb(181, 183, 97);
	border: 10px solid rgb(54, 15, 20);
	color: white;
	margin: -10px -10px -10px 0px; 
}
.window-content {
	background-color: #333;
	border: 10px solid rgb(123, 64, 1);
	color: white;
	overflow: hidden;
	overflow-y: auto;
	resize: both;
    min-width: 100px;
}
.window-content img {
	width: 100%;
	height: auto;
}