/* RESET */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

:root {
	--highlight-dark: #19888C;
	--highlight: #2ABFB0;
	--text-dark: #3f6b75;
	--text: #86b1b2;
	--text-light: #AEF2EB;
	--bg-dark: #062933;
	--bg: #093640;
	--bg-light: #0B4A59;
	--success: #30BF60;
}


body {
	font-family: 'Lora', serif;
	font-size: 18px;
	color: var(--text);
	line-height: 1.35;
	background-color: var(--bg);
}

h1,h2,h3 {
	color: var(--text-light);
}

ul {
	margin-left: 22px;
}

li {
	margin-bottom: 8px;
	list-style: disc;
}

img {
	max-width: 100%;
	height: auto;
}

p a {
	color: var(--highlight);
	text-decoration: none;
}

.grid-vcard {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 458px;
	padding: 50px;
	text-align: center;
	background-color: var(--bg-dark);
	border-left: 8px solid var(--highlight);
}

h1 {
	margin: 30px 0 10px;
	font-size: 36px;
	font-weight: 700;
}

.vcard-avatar {
	border-radius: 100%;
}

.vcard-tagline {
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: 700;
}

.vcard-intro {
	margin-bottom: 20px;
}

.vcard-social a,
.vcard-social a:visited {
	font-size: 30px;
	color: var(--text);
}

.vcard-social a:hover,
.vcard-social a:focus {
	color: var(--highlight);
}

.grid-main {
	margin-left: 458px;
	padding: 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 50px;
	align-items: start;
}

.main-projects,
.main-goals,
.main-contact {
	grid-column: 1/-1;
}

h2 {
	display: inline-block;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--highlight);
}

.main-courses ul {
	margin-left: 30px;
}

.main-courses li {
	position: relative;
	margin-bottom: 15px;
	list-style: none;
}

.main-courses li:before {
	position: absolute;
	top: 0px;
	font-size: 22px;
	left: -30px;
	font-family: "icon";
}

.courses-completed li:before {
	content: '\f14a';
	color: var(--success);
}

.courses-in-progress li:before {
	content: '\e804';
	color: var(--text-dark);
}

h3 {
	font-size: 22px;
	font-weight: 700;
}

.course-source {
	font-size: 18px;
	font-style: italic;
	color: var(--text);
}

.main-skills ul {
	margin: 0 0 15px 0;
}

.main-skills ul li {
	font-size: 18px;
	display: inline-block;
	background-color: var(--bg-light);
	padding: 5px 15px;
	border-radius: 3px;
	margin: 0 7px 10px 0;
}

.skills-comfy li {
	border-left: 3px solid var(--success);
}

.skills-seen li {
	border-left: 3px solid var(--text-dark);
}

.skill-type {
	margin-bottom: 8px;
}

.project {
	display: grid;
	grid-template-columns: 300px 1fr;
	grid-gap: 30px;
	align-items: start;
}

.project-title {
	margin-bottom: 15px;
}

.project-intro {
	margin-bottom: 15px;
}

.project-tags {
	display: flex;
	margin-bottom: 15px;
	margin-left: 0;
}

.project-tags li {
	color: var(--text-dark);
	font-style: italic;
	margin-right: 12px;
	list-style: none;
}

.button {
	display: inline-block;
	text-decoration: none;
	color: #FFF;
	border-radius: 4px;
	padding: 8px 24px;
	background-color: var(--highlight);
	box-shadow: 0 2px 0 0 var(--highlight-dark);
}

.button:hover,
.button:focus {
	background-color: var(--highlight-dark);
}

@media only screen and (min-width: 1600px) {
	body {
		font-size: 20px;
	}

	.grid-main {
		padding: 50px 75px;
	}
}

@media only screen and (max-width: 1366px) {
	h1 {
		font-size: 34px;
	}

	.vcard-intro {
		font-size: 17px;
	}

	.grid-vcard {
		width: 408px;
	}

	.grid-main {
		margin-left: 408px;
	}
}

@media only screen and (max-width: 1200px) {
	h1 {
		font-size: 28px;
	}

	h3 {
		font-size: 20px;
	}

	.vcard-tagline {
		font-size: 18px;
	}

	.vcard-intro {
		font-size: 15px;
	}

	.grid-vcard {
		width: 350px;
	}

	.grid-main {
		margin-left: 350px;
		grid-gap: 40px 25px;
	}

	.main-skills ul li {
		font-size: 16px;
		margin: 0 7px 10px 0;
	}

	.project {
		grid-gap: 20px;
		grid-template-columns: 1fr;
	}

	.course-title {
		line-height: 1.25;
	}

	.main-courses li:before {
		top: -1px;
	}

}

@media only screen and (max-width: 1000px) {
	.grid-vcard {
		position: relative;
		top: initial;
		left: initial;
		bottom: initial;
		width: auto;
		border-left: 0;
	}

	.grid-main {
		margin-left: 0;
	}

	.project {
		grid-gap: 50px;
		grid-template-columns: 300px 1fr;
	}
}

@media only screen and (min-width: 769px) and (max-width: 1000px) {
	.grid-vcard {
		display: grid;
		grid-template-columns: 250px 1fr;
		grid-gap: 50px;
		text-align: left;
		align-items: center;
	}

	h1 {
		margin-top: 0;
	}
}

@media only screen and (max-width: 768px) {
	.project {
		grid-gap: 20px;
		grid-template-columns: 1fr;
	}

	.grid-main {
		grid-template-columns: 1fr;
	}

	.main-courses ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 0 20px;
	}
}

@media only screen and (max-width: 576px) {
	body {
		font-size: 16px;
		line-height: 1.5;
	}

	.grid-vcard,
	.grid-main {
		padding: 25px;
	}

	.grid-main {
		grid-gap: 25px;
	}

	.vcard-avatar {
		width: 150px;
	}

	h1 {
		margin-top: 20px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 18px;
	}

	.main-courses ul{
		grid-template-columns: 1fr;
	}

	.main-skills ul li {
		font-size: 14px;
		margin: 0 4px 7px 0;
	}

	.main-courses li:before {
		top: -5px;
	}

	.project-tags {
		margin-bottom: 10px;
	}
}
