body {
  margin: 0 auto;
  max-width: 56em;
  font-family: sans-serif;
  
  display: grid;
  grid-template-columns: 20% 40% 1fr 20%;
  grid-template-rows: repeat(3,auto);
  grid-gap: .5em;
  	
  background-color: #c2ffff;
  font-family: Helvetica, sans-serif;
  font-size: 1em;

}

header,
main,
aside,
footer {
  /*border: 2px solid black;*/
  padding: 1em;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

main, aside {
	border-radius: 2em;
}

main {
	grid-column: 2;
}

header, 
footer {
	grid-column: 1 / span 4;
}

header {
	
	display: flex;
	justify-content: flex-end;
}

.brand {
	width: calc(100% - 110px);
	justify-content: center;
}

.brand h1 {
	text-align: center;
	padding-left: 110px;
	font-family: 'Nunito', sans-serif;
	color: #906;
}

.menu {
	width: 110px;
}

.menu ul {
	margin: 0;
	padding: 0;
}

.menu ul li {
	list-style-type: none;
	margin-bottom: .2em;
}

.menu a {
	border-radius: .8em;
	padding: 3px 10px 2px 10px;
	text-decoration: none;
	display: block;
	background: #333;
	color: #fff;
	font-family: 'Nunito', sans-serif;
	letter-spacing: .1em;
}

.menu a:hover {
	background: #666;
}


main {
	grid-column: 1 / span 3;
	display: grid;
	grid-template-rows: auto auto;
}

aside {
	margin-top: 1em;
	background-color: #fff;
	height: 4em;
	border: 2px solid #333;
}

.social {
	text-align: center;
}

.social a {
	text-decoration: none;
	margin: 1px 2px;
	font-size: 2em;
};

footer {
	display: flex;
	font-size: .8em;
	justify-content: space-between;
}

footer div {
	padding: 0px 5px;
}

.bio {
	display: flex;
	align-items: center;
	font-size: 1.1em;
}


.avatar {
	border: 2px solid #333;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	margin-right: 1em;
}

.avatar img {
	border-radius: 50%;
}

.sites {
	background-color: #fff;
    border-radius: 2em;
    padding: 0em 2em;
    margin-top: .5em;
    border: 2px solid #906;
}

.sites li {
	padding-bottom: .3em;
}

h2 {
	font-family: 'Nunito';
	color: #333;
}

/* mobile styles */

@media only screen and (max-device-width: 600px) {
  
  body { font-size: 1.5em; }
  
  .brand h1 (font-size: 2.5em;)
  
  main {
    grid-column: 1 / span 4;
  }
  
  aside {
    grid-column: 2 / span 2;
  	height: auto;
  }
  
.brand {
	width: calc(100% - 150px);
}

  .menu {
  	font-size: 1.5em;
  	width: 25%;
  }
  
  .bio {
	align-items: flex-start;
	}
	
  .sites {
  	font-size: 1.5em;
  	line-height: 2em;
  }
  .social { font-size: 2.5em;}
  .social a { margin: .2em; }
  
  .shoot {
  	height: 100px;
  	width: 100px;
  }
  
}