body{
	width: 800px;
	max-width: 90%;
}
@media screen and (min-width: 640px){
	body{
		background-color: #eaf6ff;
	}
}

@media screen and (max-width: 500px){
	h1{
		font-size:1.5rem;
	}
}

@media screen and (min-width: 640px){
	h1{
		font-size: 2.5rem;
	}
}

#fixed-size-grid-items aside{
	width: 170px;
	margin: 10px;
}

#fixed-size-grid-items ul {
  list-style-type: none;
  padding: 0px;
}

#fixed-size-grid-items li{
	display:inline-block;
	font-size: 0.8rem;
}

#stretchable-grid-items li{
	display:inline-block;
	width: 100%;
}

@media screen and (min-width: 480px){
	#stretchable-grid-items li{
		display:inline-block;
		width: 50%;
	}
}
@media screen and (min-width: 640px){
	#stretchable-grid-items li{
		display:inline-block;
		width: 25%;
	}
}

#stretchable-grid-items aside{
	margin: 10%;
}

#stretchable-grid-items ul{
	list-style-type: none;
	//*margin: 1rem -10px 1rem -10px;*/
}