a {
	text-decoration: none;
	transition: none;
	color: #e1e5e7;
	opacity: .6;
	font-size: 13px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Roboto Mono", monospace;
	font-weight: 300;
	font-style: normal;
	background-color: #16191b;
	color: #e1e5e7;
	line-height: 1.7;
	padding-bottom: 30px;
    opacity: 0;
    transition: opacity 0.6s ease-in;
}

body.loaded {
    opacity: 1;
}

nav a {
	margin-left: 20px;
	font-weight: 600;
}

.container {
	max-width: 900px;
	margin: 40px auto 0 auto;
	padding: 0 20px;
}

.intro h1 {
	font-size: 26px;
	margin-bottom: 10px;
}

.intro p {
	font-size: 13px;
	margin-bottom: 40px;
	color: #e1e5e7;
}

.work h2 {
	font-size: 23px;
	margin-bottom: 10px;
}

.work p {
	color: #e1e5e7;
	margin-bottom: 20px;
}

.company {
	position: relative;
	margin-bottom: 60px;
}

.college {
	position: relative;
}

.college h3 {
	font-size: 20px;
	font-weight: 400;
	color: #e1e5e7;
}

.roles {
	position: relative;
	padding-left: 40px;
}

.roles::before {
	content: "";
	position: absolute;
	top: 6px;
	bottom: 0;
	left: 14px;
	width: 2px;
	background-color: #e1e5e7;
	opacity: .3;
}

.company h3 {
	font-size: 20px;
	font-weight: 400;
	color: #e1e5e7;
}

#location {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 300;
	opacity: .6;
}

.role {
	position: relative;
	margin-bottom: 20px;
	padding-left: 20px;
}

.role::before {
	content: "";
	position: absolute;
	top: 6px;
	left: -31px;
	width: 12px;
	height: 12px;
	background-color: #e1e5e7;
	border-radius: 50%;
}

.role h4 {
	font-size: 16px;
	font-weight: 400;
	color: #e1e5e7;
}

.role p {
	font-size: 13px;
	color: #e1e5e7;
	margin-bottom: 10px;
}

.role ul {
	padding-left: 20px;
	color: #e1e5e7;
}

p strong {
	opacity: .6;
	font-weight: 300;
	font-size: 12px;
}

#grade {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 300;
	opacity: .6;
}

#signature {
	width: 140px;
}

.footer {
	text-align: right;
	padding-top: 20px;
}

#linkedin {
    transition: opacity 0.25s ease-in-out;
}

#linkedin:hover {
    opacity: .9;
}