body {
	background: url('dishes.jpg');	
	height: auto;
	background-size: cover;
}

h1 {
	text-align: center;
	color: #ffffff;
	text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
	font-size: 3rem;		

}

.wrapper {
	max-width: 500px;
	background: rgba(255,255,255,0.95);
	box-shadow: 0 0 0 10px rgba(0,0,0,0.3);
	padding: 20px;	
	margin: 5% auto;
}

h2 {
	text-align: center;
	margin: 0;
	font-weight: 200;
}

.plates {
	margin: 0;
	padding: 0;
	text-align: left;
	list-style: none;
}

.plates li {
	border-bottom: 1px solid rgba(0,0,0,0.2);
	padding: 10px 0;
	font-weight: 100;
	display: flex;
}

.plates label {
	flex: 1;
	cursor: pointer;
}

.plates input {
	display: none;
}

.plates input + label:before {
	content: '☐';
	margin-right: 10px;
}

.plates input:checked + label:before {
	content: '☕';
}

.add-items {
	margin-top: 20px;
}

.add-items input {
	padding: 10px;
	outline: 0;
	border: 1px solid rgba(0,0,0,0.1);
}
