html, body {
	margin: 0;
	width: 100%;
	height: 100%;
}

.app {
	width: 100%;
	height: 100%;
	display: flex;
}

.draw-area {
	flex-grow: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: hsl(230, 4%, 40%);
	padding: 2em;
}

.side-bar {
	width: 160px;
	flex-grow: 1;
	padding: 1em;
	box-shadow: 0 0 1em rgba(0, 0, 0, 0.45);
}

.draw-area2 {
	display: flex;
	/* flex-direction: column; */
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	aspect-ratio: 1 / 1;
	max-width: 100%;
}

.sticker-area {
	/* border: 1px solid gray; */
	border-radius: 2px;
	background: rgb(248, 248, 248);
	flex-grow: 1;
	/* height: 100%; */
	aspect-ratio: 1 / 1;
}

.draw-area .sticker-area {
	box-shadow: 0 0 1em rgba(0, 0, 0, 0.15);
}
.side-bar .sticker-area {
	border: 1px solid hsl(230, 4%, 40%);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
}


.palette-swatch {
	display: flex;
}
.palette-swatch-selected {
	background-color: hsla(230, 90%, 50%, 0.3);
}
.palette-add-swatch {

}
