:root {
	--text-primary: #222;
	--text-accent: green;
}

html {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 10px;
}

body {
	font-family: 'Source Serif Pro', sans-serif;
	color: var(--text-primary);
	padding: 5vh 10vw;
}

h1 {
	font-size: 3.2rem;
	font-weight: 400;
	margin: 30px 0;
}

p {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: underline;
	color: var(--text-primary);
}

.greeting {
	font-size: 5.6rem;
	font-weight: 600;
	margin-top: 50px;
}

.about {
	line-height: 33.5px;
	font-size: 2.3rem;
	font-weight: 300;
	max-width: 25em;
}

.social {
	text-align: center;
	margin: 30px 0;
}

.social ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.social ul li {
	display: inline-block;
	padding: 0 10px;
}

.social a {
	color: var(--text-primary);
	opacity: .3;
}

.social a:hover {
	opacity: 1;
}

.email {
	text-align: center;
	font-size: 1.5rem;
}

.email a {
	color: var(--text-primary);
	text-decoration: none;
	opacity: 1;
}

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