body {
	border: none;
	margin:0;
	padding: 0;
}

*{
	box-sizing: border-box;
}

header {
	background:#282923FF;
	color:white;
	width: 100%;
	padding:20px;
	box-sizing: border-box;
}

header h1 {
	margin:0;
}

#main {
	box-sizing: border-box;

	width: 100%;
	padding:15px;
}

#imageInput {
	display: none;
}

#toolbar {
	background-color: lightgrey;
	border-radius: 3px;
	position: sticky;
	top:0;
}

#toolbar button{
	width: 50px;
	height: 50px;
	border: none;
	margin: 0;
	background: none;
	padding: 0;
	margin-left: 10px;
	cursor: pointer;
}

#toolbar button img {
	width:50px;
	height:50px;
}

#draw {
	background: white;
	max-width:99%;
	height:50%;
}

#imageContener {
	width: 100%;
	background: grey;
	display: flex;
	justify-content: center;
	padding: 5px;
}

#imageContener.drag {
	border: solid #251EFFFF 3px;
	filter: blur(4px);
}