@font-face {
	font-family: 'Merriweather';
	src: url(Merriweather-Regular.ttf);
}

* {
	margin: 0;
	padding: 0;
}

html {
	position: relative;

	--color-bg: #e0d8d5;
	--color-text: #624046;

	--text-size-normal: 16px;
}

body {
	background-color: var(--color-bg);
	font-size: var(--text-size-normal);
	font-family: 'Merriweather';
}

h1,
h2,
h3,
h4,
p,
a {
	color: var(--color-text);
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

header {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 2rem;
}

header > #header-title-div {
	display: flex;
	justify-content: start;
	align-items: center;
}

header > nav {
	display: flex;
	justify-content: end;
	align-items: center;
	flex-wrap: wrap;
	gap: 3rem;
}

@media (max-width: 600px) {
	header {
		justify-content: center;
	}

	header > #header-title-div {
		text-align: center;
	}

	header > nav {
		flex-direction: column;
		justify-content: center;
		margin-top: 2rem;
	}
}

.page-header,
.page-subheader {
	margin: 2rem auto;
	text-align: center;
}

.page-subheader {
	font-size: 1.1rem;
}

.images-grid {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.images-grid img {
	border: 4px solid #000000;
	width: 600px;
	max-width: 90vw;
	margin: 1rem;
}

#about-me-section {
	display: flex;
	justify-content: center;
}

.about-me-wrapper {
	width: 600px;
	max-width: 90vw;
	margin: 4rem 2rem;
}

#about-me-img {
	width: 600px;
	max-width: 90vw;
	border: 4px solid #000000;
}

#about-me-text {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	height: 100%;
	gap: 2rem;
}

#about-me-text a {
	color: #58737a;
}

@media (max-width: 1050px) {
	#about-me-img-wrapper {
		display: none;
	}
}
