/*CSS DOCUMENT*/

body {
	font-family: sans-serif;
	line-height: 1.4em;
	color: #222;
	background-color: #ffffff;
	box-sizing: border-box;
	}
	
div.container {
    max-width: 40em;
    margin: 1em;
	padding: 1em;
}

/* I have *some* selectors with their declarations in the declaration block. You’ll need more selectors and declaration blocks. */


h2 {
	padding-top: 1em;
	padding-left: 1em;
}

h3 {
	padding-left: 1em;
}

ul {
	list-style-type: none;
	padding: 1em;
}

section {
	background: #ecebeb;
	padding: 0;
	margin: 0 0 1em;
}

section ul li {
	display: flex;
	flex-wrap: wrap;
	max-width: 50em;
	margin: 0.5em;
}

section ul li label {
	display: flex;
	flex: 1 0 0;
}


section p {
	margin-top: 0;
}


section.personal-info ul li input[type="text"]
section ul li input[type="email"] 
section ul li input[type="tel"] 
section ul li select {
	flex: 3 0 24em;
	padding-left: 0;
}

.order ul li {
	padding-left: 1em;
	list-style-type: none;
}


textarea {
	min-width: 100%;
	box-sizing: border-box;
/*	display: flex;
	width: 15;  I’m helping you out with the other properties, but you need to figure these two out. (And delete this comment. */
	height: 6em;
	background: #fcfcfc;
	border: 1px solid #e8e8e8;
	padding: 0.4em;
	font-family: sans-serif;
	color: #777;
	}


@media screen and (min-width: 40em) {
  	div.container {
	max-width: 50%;
    margin: 0 auto;
	}

section.order ul {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
}

section.personal-info ul li {
	margin: 1 0 0 0;
}

section.method ul {
	display: flex;
	flex-wrap: wrap;
}

section ul li {
	display: flex;
	flex: 0 0 15em;
}