/*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;
}


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

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: 1 0 0;
	box-sizing: border-box;
}



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

section p {
	margin-top: 0;
}



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

h3{
	margin-bottom: 0em;
}

ul{
	padding: 0;
}

section.personal-info li{
	padding: 0 0 1em;
}

section.personal-info input{
	padding: 0 0 0em;
}

section.personal-info li label{
	flex-basis: 14em;
	flex-wrap: 20;
}

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

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

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

  div.container {
    margin: auto;
  }

}