@charset "UTF-8";

#headshot {
	width: 400px;
	height: 400px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	margin-bottom: 20px;
	border-style: solid;
	border-radius: 50%;
	border-width: 3px;
	border-color: var(--link-color);
}
#socials {
	padding-left: 13px;
}
#socials a {
	text-decoration: none;
}
#socials svg {
	color: var(--text-color);
	height: 40px;
	width: 40px;
	padding-right: 10px;
	transition: color 0.2s;
}
.row h2 {
	display: block; /* or inline-block */
	white-space: normal; /* ensures normal word wrapping */
}
.row h2 a,
.row h2 p {
	display: inline;
	margin: 0;
}
#socials svg:hover {
	color: var(--link-color);
}
@media (max-width: 800px) {
	#socials {
		margin-bottom: 85px;
	}
}
@media (max-width: 650px) {
	#headshot {
		width: 70%;
		height: 70%;
	}
}