/*
body {
	display: flex;
	justify-content: space-around;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	min-height: 100vh;
	background-image: linear-gradient(#111, #050505);
	--img-url: url(https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?w=350&h=350&fit=crop&crop=faces);
}
*/
.headshot {
	flex-shrink: 0;
	border: calc(8px + 0.2vw) solid transparent;
	/* border: calc(1px + 0.1vw) solid transparent;*/
	background-origin: border-box;
	background-clip: content-box, border-box;
	background-size: cover;
	box-sizing: border-box;
	box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.5);
}

.headshot-1 {
	background-image: var(--img-url), linear-gradient(#f9f047, #0fd850);
}