html, body {
	height: 100vh;
	display: flex;
	align-items: center;
	flex-flow: column;
}

body {
	margin-top: 100px;
}

.about-me-container {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-grow: 1;
}

.about-me-text, .text {
	font-family: 'Roboto', sans-serif; 
	margin: 10px;
}

.app {
	width: 600px;
	display: flex;
	flex-direction: column;
}

.body-container {
	display: flex;
	flex-direction: column;
}

.nav {
	display: flex;
	justify-content: space-around;
	align-items: center;
	list-style: none;
	flex-grow: 1;
}

.nav-bar {
	width: 100%;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	margin-bottom: 20px;
}

.nav-link {
	color: black;
	font-size: 20px;
	font-family: 'Unica One', cursive; 
}

.nav-link:hover {
	color: darkgray;
}

.home-link {
	font-size: 40px;
}

.home-link:hover {
	color: black;
}

.portrait {
	height: 200px;
	width : 200px;
	border-radius: 50%;
}

.project {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.project-blurb {
	display: flex;
	align-content: flex-start;
	margin: 10px;
}

.project-title {
	text-align: center;
}

.thumbnail {
	height: 150px;
	border-radius: 3px;
	max-width: 150px;
	margin-top: 5px;
}

.title {
	font-family: 'Unica One', cursive;
	font-size: 20px;
	margin: 10px;
}

.title-link {
	color: black;
}

.title-link:hover {
	color: darkgray;
	text-decoration: none;
}

.whitespace {
    margin-bottom: 100px;
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: black;
	}
	.nav-link {
		color: #f2f2f2;
	}
	.home-link:hover {
		color: #f2f2f2;
	}
	.about-me-text, .text, .title, .project-title {
		color: #f2f2f2;
	}
}

/* for thinner screens */
@media only screen and (max-width: 600px) {
	body {
		margin-top: 50px;
	}

	.app {
		width: 100%;
	}

	.about-me-container {
		margin-top: 10px;
		flex-flow: column;
		justify-content: flex-start;
	}
	.nav-bar {
		margin-bottom: 20px;
		flex-flow: column;
	}
	.about-me-text {
		text-align: center;
	}
}