.Header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	padding: 40px 20px;
	flex-wrap: wrap;
	/* allows wrapping naturally */
}

.Header__Box {
	flex: 1 1 400px;
	padding: 20px;
	text-align: center;
}

.Header__SubTitle {
	font-weight: normal;
	font-size: 1.5rem;
	margin-top: 0;
	margin-bottom: .5rem;
	line-height: 1.2;
}

.Header__Title {
	padding-top: 10px;
	font-size: 60px;
	font-weight: 700;
}

.Header__Row {
	display: flex;
	flex-direction: column-reverse;
}

.Header__Photo {
	flex: 1 1 300px;
	max-width: 400px;
	border-radius: 500px 200px 400px 800px;
	width: 100%;
	height: auto;
	padding: 0 12px;
}

.Header__SkillSection {
	margin-top: 30px;
}

.Header__Left {
	margin-top: 10px;
}

.Header__Right {
	margin-top: 10px;
}

@media screen and (min-width: 1024px) {
	#skills-inline {
		padding: 0 20%;
	}

	.Header__Left {
		margin-top: 30px;
	}

	.Header__Right {
		margin-top: 30px;
	}
}

@media screen and (min-width: 1200px) {
	.Header__Title {
		padding-top: 20px;
		font-size: 80px;
	}
}

@media screen and (max-width: 768px) {
	.Header {
		flex-direction: column;
		text-align: center;
	}

	.Header__Photo {
		max-width: 250px;
		margin-bottom: 20px;
	}

	.Header__SkillSection {
		order: 3;
		/* ensure skills appear AFTER photo */
		margin-top: 20px;
	}

	.Header__Title {
		font-size: 40px;
	}
}
