* {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	align-items: center;
	background: #ffffff;
	color: #555;
	display: flex;
	flex-direction: column;
	font-family: 'Avenir', 'Arial', serif;
	margin-top: 20%;
	padding: 0;
}

h1 {
	text-align: center;
	font-size: 3em;
	font-weight: lighter;
}

ul {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	list-style-type: none;
	padding: 0;
}

li {
	flex: 1;
	text-align: center;
}

a {
	color: #146ee6;
	display: block;
	font-size: 1.5em;
	padding: 16px 12px 10px 12px;
	text-decoration: none;
}

#linkedin {
	font-size: 0;
}

#email {
	font-size: 32px;
}

svg {
	height: 32px;
	width: 32px;
}

svg > * {
	fill: #666;
	transition: fill 0.2s ease-out;
}

#github:hover svg > * {
	fill: #000000;
}

#mastodon:hover svg > path {
	fill: rgb(99, 100, 255);
}

#twitter:hover svg > * {
	fill: #55acee;
}

#linkedin svg > *:not(:first-child) {
	fill: #ffffff;
}

#linkedin:hover svg > *:first-child {
	fill: #18679e;
}

#linkedin:hover svg > *:not(:first-child) {
	fill: #ffffff;
}

#stackoverflow:hover svg > *:first-child {
	fill: #bbb9b7;
}

#stackoverflow:hover svg > *:last-child {
	fill: #f36f18;
}

#email:hover svg > *:first-child {
	fill: #305ca4;
}

#email svg > path {
	stroke: #ffffff;
}

#email:hover svg > path {
	stroke: #ffffff;
}
