
import {css} from "../../camel-css/lit.js"

export default css`

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

div {
	border: 1px solid #fff4;
	border-radius: 0.5em;
	padding: 0.5em;
	max-width: max-content;

	button {
		color: rebeccapurple;
		padding: 0.2em 0.5em;
	}
}

`
