html, body {
	height: 100%;
}
body {
	background-color: #fff;
	background: radial-gradient(circle at center, #fff 0%, #f8f8f8 75%, #ebebeb 100%);
	background: radial-gradient(circle at center, #fff 0%, #dbd4d4 75%, #ebebeb 100%);
	color: #222;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
	font-size: 1rem;
	/* line-height: 1.5; */
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
main {
	padding: 1rem;
	text-align: center;
}
h1 {
	font-size: 5vh;
	line-height: 110%;
	margin: 0;
}
h1, h2, h3, h4, body {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

img {
	max-width: 100%;
	height: auto;
}
p {
	margin: 1rem 0 0 0;
}

a.icon {
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-position-y: center;
}
a.icon.linkedin{
	/* background-image: url("img/LI-In-Bug.png"); */
	background-image: url("img/linkedin.svg");
}
a.icon.phone{
	/* background-image: url("img/LI-In-Bug.png"); */
	background-image: url("img/phone.svg");
}

.flex {
	display: flex;
}

.flex-row {
	display: flex;
	flex-direction: row;
	-ms-flex-direction: row;
}

.flex-col {
	display: flex;
	flex-direction: column;
	-ms-flex-direction: column;
}

.contact {
	display: flex;
	flex-direction: row;
	-ms-flex-direction: row;
	flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}