/*CSS DOCUMENT*/

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

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



section.personal-info ul li{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1em;
}


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

section.personal-info ul li label {
	flex: 1 0 8em;
}


section.order ul {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 1em;
}

section.order ul li {
	flex: 1 0 15em;
	margin: 0em 1em 0em 0em;
}

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

section.method ul li {
	flex: 1 0 15em;
	margin: 0 1em 0 0;
}

section {
    background: #eee;
    padding: 1em;
    margin-bottom: 1em;
}

section h3{
	margin-bottom: 0;
}

section p {
	margin-top: 0;
}

textarea {
	box-sizing: border-box;
	display: inline;
	width: 100%;  
	height: 4em;
	background: #fcfcfc;
	border: 1px solid #e8e8e8;
	padding: 0.4em;
	font-family: sans-serif;
	color: #777;
	}

ul  {
		list-style: none;
		padding-left: 0;
	}

button {
	border-radius: 0.5em;
	padding: 0.2em 1em 0.2em 1em;
	background: #fcfcfc;
	border: 1px solid #d3d3d3
}


@media only screen and (min-width: 40em) {

  div.container {
    margin: auto;
  }

}
