style.css

html{
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
	line-height: 1.5;
	background:#F2F2F2;
	color:#323232;
}

img{
	max-width: 100%
}
.HVDphoto{
	max-width: 100%;
}

.icon{
	color:#323232;
	display: inline-block;
	font-size: inherit;
	height:1em;
	overflow: visible;
}
a {
	color:#323232;
	text-decoration: none;

}
a:hover {
	text-decoration: underline;
}


.container{
	max-width:660px;
	margin: 40px auto;
	padding: 32px;
	background: white;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
section {

	display: grid;
	grid-template-columns: 1.2fr 4fr;
	grid-gap: 20px;
	padding:24px 0;
	border-bottom: 1px solid lightgrey;
}

section:last-child {
	border-bottom: none;
}

.section-title {
	background-color:#668899;
	color: #ffffff;
	text-align: center;
	font-weight:bold;
	font-size: 18px;


}

.name {
	font-size:36px;
	line-height:1;
}

.title {
	font-size:20px;
	font-weight:300;
	color: #668899;
}

.links {
	display: flex;
	margin:10px 0 20px 0;
}

.link {
	display: flex;
	align-items: center;
	flex: 1;

}
.link img{
	margin-right:6px;
}


.job{
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid lightgrey;
}

.job:last-child {
	border-bottom: none;

}
.job-title-container {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
	font-size: 14px;
}
.job-company {
	font-weight:bold;
	line-height:1.2;
}
.skills-container{
	display:grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 20px;
	margin-bottom:10px;
}
.skills-container ul {
	margin-left:20px;
	list-style: disc;


}
.reference{
	font-size:18px;
}


footer{
	
	margin-bottom: 20px;
}


.attribution {
	margin: auto;
	font-size: 8px

}





































