uix-main main {
	height: 100vh;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
	gap: 60px;
}

uix-main .color-list {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap-reverse;
	max-width: 300px;
}

uix-main .color {
	width: 50px;
	height: 50px;
	border-radius: 20%;
}

uix-main .color-add {
	width: 50px;
	height: 50px;
	border-radius: 20%;
	background-color: #444;
	margin: 0;
	color: white;
	font-size: 2em;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	padding-bottom: 5px;
	border: none;
}