.row {
	flex-direction: row;
}
.col {
	flex-direction: column;
}

.content-container {
	border: 2px solid;
	border-radius: 1rem;
	display: flex;
	flex-wrap: wrap;
}

.btn-container {
	display: flex;
	flex-wrap: wrap;
}
.btn-label {
	margin-bottom: 0;
	text-align: center;
}

.message-container {
	border: 2px solid;
	border-radius: 1rem;
}
.message {
	padding-left: 1em;
	padding-right: 1em;
	white-space: pre;
}

.file-container {
	width: 90%;
	margin-left: 5%;
	overflow-x: scroll;
}
.file-container h3 {
	display: inline;
}

.side-by-side {
	display: flex;
	justify-content: space-evenly;
	max-width: 100%;
}
.side-by-side > div {
	width: 45%;
	max-height: 100vh;
	padding: 2%;
	outline: 1px solid light-dark(#242424, #F6F5F4);
	overflow: scroll;
	margin-bottom: 1rem;
}
.side-by-side h3 {
	text-align: center;
}

pre {
	font-size: 1rem;
}

.project-card {
	display: inline-block;
	border: 1px solid;
	border-radius: 1rem;
	padding: 1rem;
	margin: 1rem;
}

.project-card h3 {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	text-align: center;
}

.project-link {
	color: light-dark(black, white);
}

.project-link:hover {
	color: darkorange;
}

@media only screen and (min-width: 600px) { /* For viewports over 600px */
	.side-by-side > div {
		width: 45%;
	}
	.side-by-side {
		flex-direction: row;
	}
	.btn-container {
		justify-content: center;
	}
	.content-container {
		justify-content: space-evenly;
	}
	.file-container button {
		margin-left: 1em;
	}
}
@media only screen and (max-width: 600px) { /* For viewports under 600px */
	.side-by-side > div {
		width: 95%;
	}
	.side-by-side {
		flex-direction: column;
	}
	.btn-container {
		justify-content: start;
	}
	.content-container {
		justify-content: center;
	}
	.file-container button {
		margin-left: 0;
	}
}
