body {
	background: white;
	font-family: sans-serif;
	font-size: 100%;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}

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

a, a:visited {
	font-weight: bold;
	text-decoration: none;
}

a:focus, a:hover {
	text-decoration: underline;
}

a img, a:focus img, a:hover img {
	border: none;
	text-decoration: none;
}

#banner {
	background-color: transparent;
	background-position: center center
	background-repeat: no-repeat;
	background-size: cover;
	height: 150px;
	position: absolute; top: 0; right: 0; bottom: auto; left: 0;
	width: 100vw;
}

#wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
	position: relative;
}

header {
	align-items: end;
	display: flex;
	gap: 1.5rem;
	margin: 75px auto 0 auto;
	max-width: 720px;
	position: relative;
	width: calc(100vw - 3rem);
}

#avatar { }

	#avatar img {
		border: 3px solid white;
		border-radius: 100px;
		height: auto;
		max-width: 200px;
		min-width: 100px;
		position: relative; top: 0;
		width: 20vw;
	}

#id { }

	#id h1 {
		font-size: 150%;
		font-weight: 700;
		line-height: 1.3;
		margin: 0;
	}
	
	#id h2 {
		font-size: 90%;
		font-weight: 400;
		line-height: 1.5;
		margin: 0.5rem 0;
	}

main {
	flex-grow: 1;
	margin: 3rem auto;
	max-width: 720px;
	position: relative;
	width: calc(100vw - 3rem);
}

	#message {
		background: lemonchiffon;
		border: 1px solid goldenrod;
		font-size: 90%;
		font-style: italic;
		line-height: 1.5;
		margin: 1.5rem 0;
		padding: 1.5rem;
	}
	
	#social ul {
		display: grid;
		gap: 1.5rem;
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		list-style: none;
		padding: 0;
		width: 100%;
	}
	
		#social ul li {
			align-items: center;
			display: flex;
			flex-direction: column;
		}
	
	#social svg {
		height: 6rem;
		width: 6rem;
	}
	
footer {
	border-top-width: 1px;
	border-top-style: solid;
}

#colophon {
	font-size: 90%;
	font-weight: 400;
	line-height: 1.5;
	margin: 0 auto;
	max-width: 720px;
	padding: 1.5rem 0;
	position: relative;
	text-align: center;
	width: calc(100vw - 3rem);
}

@media screen and (max-width: 960px) {

	body {
		font-size: 90%;
	}

	#banner {
		height: 67px;
	}
	
	header {
		margin-top: 50px;
	}

	#id h1 {
		font-size: 125%;
	}
	
	#id h2 {
		font-size: 85%;
		line-height: 1.3;
		margin: 0.25em 0;
	}
	
}