html {
	box-sizing: border-box;
	font-size: 100%;

	background: black;
	background: linear-gradient(#2f2f2f, black);
	color: white;
}

*,
:after,
:before {
	box-sizing: inherit;
}

body {
	min-height: 100vh;
	text-align: center;
	font-family: sans-serif;
}

#logo {
	height: 8.7em;
	border: 2px solid;
	border-radius: 50%;
}

#name {
	margin: 0;
}

#bio {
	max-width: 400px;
	margin: auto;
}

.link {
	display: block;
	max-width: 400px;
	margin: 0 auto 15px;
	padding: 15px 20px;
	font-size: .85rem;
	border: 2px solid;
	text-decoration: none;
	transition: all .2s ease-in-out;
}

.link,
.link > a {
	border-color: #858585;
	color: white;
}

a.featured-link {
	position: relative;
	font-weight: 700;
}
a.featured-link::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid #858585;
}

h2 {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 2px;
}

footer a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}
