html {
	margin: 0;
	box-sizing: border-box;
	background: #eaeaea;
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial;
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	max-width: 920px;
	background: #fff;
	margin: 20px auto;
	border: 1px solid #cacaca;
}

h1 {
	color: #b9a05f;
	font-size: 28pt;
	text-transform: uppercase;
	text-align: center;
	display: block;
	font-weight: normal;
}

h2 {
	color: #202e3b;
	font-size: 11pt;
	text-transform: uppercase;
	margin-top: 30px;
}

h3 {
	font-weight: normal;
	font-size: 11pt;
    margin: 5px 0;
}

p, li {
	font-size: 11pt;
	line-height: 1.6;
}

ul {
	margin: 0 -10px;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

header {
	background: #202e3b;
	padding: 15px 0 30px;
	position: relative;
}

.contact {
	width: fit-content;
    display: table; /* IE and Edge */
	margin: 10px auto 0;
}

.contact a {
	color: #fff;
	display: inline-block;
	margin: 0 15px 0;
}

section {
	padding: 10px 60px;
}

.skill {
    display: grid;
	grid-template-columns: repeat(auto-fill, 186px);
    grid-template-columns: 185px 1fr;
}

ul.skill h3 {
	margin: 0;
}

ul.skill li {
	margin-bottom: 10px;
}	

span {
	margin: 5px 0;
}

li h3 {
	margin: 5px 0 0 0;
}

li p {
	margin-top: 2px;
}

#download-pdf {
    position: absolute;
    top: 10px;
    right: 10px;
}

#download-pdf img {
	width: 25px;
}

#download-pdf a {
	opacity: 0.3;
	transition: opacity 1s;
}

#download-pdf a:hover {
	opacity: 1;
}

@media print {
	html {
		background: #fff;
	}
	
	body {
		border: none;
	}
}

@media only screen and (max-width: 600px) {
	section {
		padding: 10px;
	}
}












