body {
  background-color: black;
  color: white;
}

main {
	margin-left: auto;
	margin-right: auto;
	max-width: 768px;
	flex-direction: column;
	justify-content: center;
}

main > * {
	margin-bottom: 15px;
	text-align: left;
    font-family: Georgia, serif;
}

header {
	border-bottom: 1px solid #F8F886;
	font-size: 300%;
	text-align: center;
}

section#wrapper {
	display: flex;
	flex-direction: row;
}

section#wrapper > div {
	background: linear-gradient(#86F8F8, #79EBEB);
	width: 346px;
	padding: 15px;
	margin-left: 15px;
}

section#wrapper > div:first-child {
	margin-left: 0;
}

section {
  color: black;
}

section div h4 {
  font-size: 200%;
  margin: 0 0 10px 0;
  font-family: sans-serif;
}

section#contact {
  background: linear-gradient(#F8F886, #EBEB79);
  padding: 15px;
}

a {
  color: black;
}

a:hover {
  color: #777777;
}

section#contact p > * {
  vertical-align: middle;
}

section#contact p {
  font-size: 120%;
  margin-top: 10px;
}

section#contact p a {
  margin-left: 10px;
}

section#contact p:last-child {
  margin-bottom: 10px;
}

p#github > img {
	margin-right: 10px;
}

@media only screen and (max-width: 800px) {
	section#contact p {
		font-size: 100%;
		margin-top: 10px;
	}
	
	section#wrapper {
		display: flex;
		flex-direction: column;
	}
	
	section#wrapper > div {
		width: 100%;
		margin-left: 0;
		margin-bottom: 15px;
		box-sizing: border-box;
	}
}