html {
	box-sizing: border-box;
	font-size: 16px;
	color: black;
	background-color: white;
	font-family: 'Montserrat', sans-serif;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
div {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

dl {
	display: grid;
	grid-template-columns: max-content auto;
}

dt {
	grid-column-start: 1;
}

dd {
	grid-column-start: 2;
}

dt::after {
	content: ": ";
}

a {
	text-decoration: none;
	color: black;
}

a:hover {
	text-decoration: underline;
}

h1 {
	font-size: 3rem;
}

.main {
	display: flex;
	flex-direction: column;
}

@media only screen and (min-width: 900px) {
	.main {
		position: absolute;
		left: 50%;
		top: 50%;

		transform: translate(-50%, -50%);
	}
}

.row {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
}

.row>div {
	margin: 0.5rem 0 0.5rem 0.5rem;
}

.row>div:last-child {
	margin-right: 0.5rem
}

.row.header>div {
	margin: 0;
}

.row.header>div:last-child {
	flex-grow: 1;
	text-align: center;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-evenly;
}

.social>div {
	flex-grow: 1;
	border-right: dashed 0.1rem #999;
	text-align: center;
}

.social>div:last-child {
	border-right: none;
}

.bio p {
	margin: 0.4rem 0 0.4rem 0;
}

.highlight {
	background-color: #00fafa;
}

.email-icon {
	display: inline-block;
	vertical-align: middle;
	width: 1.2rem;
	height: 1.2rem;
}

.social-icon {
	display: inline-block;
	width: 4rem;
	height: 4rem;
}

.logo {
	width: 12rem;
	height: 12rem;
	display: block;
}