body {
			margin: 0;
			min-height: 100vh;
			background: #111;
			color: #fff;
			font-family: Arial, sans-serif;
			display: flex;
			justify-content: center;
			align-items: center;
}
		.color {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.color.selected {
    transform: scale(1.35);
}

.color.hidden {
    opacity: 0;
    pointer-events: none;

	transition: transform 0.3s ease, opacity 0.3s ease;
}
			.palette {
			display: flex;
			gap: 18px;
			justify-content: center;
			align-items: center;
} 
	@media (max-width: 700px) {
    .palette {
        flex-direction: column;
    }
}
