/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
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;
}
/*======= END OF RESET =======*/


/* ==== GENERAL LAYOUT & SHARED STYLING ==== */

/* CUSTOM CSS COLORS */

:root {
	--main: #fff;
	--headings: #000;
	--links: #ADE7C9;
}

* {
	box-sizing: border-box;
}

body {
	max-width: 100%;
	margin: 0 auto;
	color: var(--headings);
	position: relative;
  	font-family: Poppins, 'Be Vietnam Pro', 'A Bee Zee', Dongle, 'League Spartan', Hubballi, Arial, sans-serif;
}

/* ==== HEADER ==== */

h1 {
	text-align: center;
	font-size: 3.6em;
	font-weight: 600;
	padding: 0.5em;
	margin-top: 0.2em;
}

/* NAVIGATION */

nav {
  text-align: right;
  font-size: 1.8em;
  font-weight: 600;
  list-style-type: none;
  font-size: 1.5em;
  letter-spacing: 2.0px;
  padding: 1.0em 1.5em;
}

nav span {
	background-color: var(--links);
}

a:link, a:visited {
  color: var(--headings);
  text-decoration: none;
}

a:hover,  a:active, a:focus {
  color: var(--headings);
}

.menu li {
	display: inline-block;
	list-style-type: none;
	padding: 0.5em;
}

/* ==== MAIN STYLING ==== */

main {
	color: var(--headings);
}

h2 {
	font-size: 2.0em;
	font-weight: 600;
	text-align: center;
}

h2 span {
	background-color: var(--links);
}

.about h2, .resume h2 {
	padding: 1.5em;
}

h3 {
	font-size: 1.5em;
	font-weight: 600;
	text-align: left;
	margin-top: 1.0em;
	margin-bottom: 1.0em;
}

/* CONTACT STYLING */

.contact {
	margin-top: 2.0em;
}

.contact ul {
	display: flex;
	justify-content: center;
	width: 80%;
	margin: 0 auto;
}

.contact li {
	font-size: 2.5em;
	background-color: var(--headings);
	padding: 0.2em;
	border-radius: 10px;
}

i {
	color: var(--links);
}

address {
	text-align: center;
	margin: 2.0em;
	font-size: 1.2em;
}

/* ABOUT ME STYLING */

.about {
	padding: 2.0em;
	margin-top: 3.0em;
	background-color: var(--links);
}

.about p {
	max-width: 80%;
	font-size: 1.2em;
	line-height: 1.8;
	margin: 1.0em;
	margin-top: 2.0em;
	margin-left: 4.0em;
}

.about p:last-of-type {
	margin-bottom: 6.0em;
}

/* MA COURSEWORK STYLING */

.work {
	padding: 6.0em;
}

.work p {
	font-size: 1.2em;
	line-height: 1.8;
	margin-top: 3.0em;
	margin-bottom: 3.0em;
}

.work ul {
	text-align: left;
	margin: 1.0em;
	text-decoration: underline;
}

.work ul li {
	line-height: 1.8;
	font-size: 1.2em;
}

summary {
	font-size: 1.7em;
	font-weight: 600;
	text-align: left;
	margin-bottom: 3.0em;
}

summary span {
	background-color: var(--links);
}

.seo{
	margin-bottom: -3.0em;
}

/* RESUME STYLING */

.resume {
	background-color: var(--links);
	text-align: center;
}

.experience {
	max-width: 80%;
	text-align: left;
	font-size: 1.2em;
	line-height: 1.8;
	margin-left: 5.0em;
	margin-right: 3.0em;
	margin-bottom: 3.0em;
}

object {
	display: block;
	margin: 2.0em auto 0;
	padding: 1.0em;
	max-width: 850px;
}

.resume a {
	display: block;
	padding: 2.0em;
	font-size: 1.2em;
	font-weight: 600;
	text-decoration: underline;
}

/* ==== IMAGES ==== */

/* ABOUT ME PHOTO */

.wrap {
	float: left;
	margin: 5.0px;
	padding: 4.5em;
}

.about img {
	border: 1px solid var(--links);
	border-radius: 10px;
	background-color: var(--links);
}

/* LOGO */

.logo {
	display: block;
	text-align: center;
	padding: 1.0em;
}

/* ==== FOOTER ==== */

footer {
	padding: 2.0em;
}

footer span {
	display: block;
	text-align: center;
	font-size: 1.2em;
	font-weight: 600;
	margin-top: 1.0em;
	margin-bottom: 1.0em;
}

footer ul {
	display: flex;
	justify-content: center;
	width: 80%;
	margin: 0 auto;
}

footer li {
	font-size: 2.0em;
	background-color: var(--headings);
	padding: 0.2em;
	border-radius: 10px;
}

footer i {
	color: var(--links);
}
