:root {
	font-family: sans-serif;
}

h {
	font-family: sans-serif;
	font-weight: bold;
	margin: 0.3rem;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 2rem;
}

header,
footer {
	font-family: sans-serif;
	text-transform: capitalize;
	padding-top: 0.5rem;
}

main a {
	text-decoration: underline;
	text-transform: capitalize;
	color: black;
}

main a:visited {
	text-decoration: underline;
	text-transform: capitalize;
	color: black;
}

p {
	margin: 0.3rem 0;
}

textarea {
	width: 30rem;
	height: 10rem;
	margin-bottom: 1rem;
}

.page-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 90%;
}

.flex-fieldset {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: 40%;
}

.flex-fieldset textarea {
	width: 50%;
	height: 10rem;
	margin: 0.2rem;
}

.flex-column-centered {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.flex-row-centered {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.flex-row-spaced {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.text-content {
	font-family: sans-serif;
	text-align: left;
	font-size: large;
	margin: 1rem;
}

.nav-buttons{
	display: flex;
	flex-direction: row;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
}

.button,
.nav-button {
	border-radius: 0.3rem;
	color: aliceblue;
	border: 0.1rem solid black;
	background-color: black;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	padding: 0.6rem 1.2rem;
	margin: 1rem;
	width: 15%;
	transition: 0.2s all;
}

.button:hover,
.nav-button:hover {
	color: black;
	background-color: white;
	cursor: pointer;
	transform: scale(1.1);
}

.button:active,
.nav-button:active {
	color: cornflowerblue;
	background-color: black;
	border-radius: 0.3rem;
}

.profile-picture {
	display: flex;
	flex-direction: column;
	margin: 1rem;
	width: 20rem;
}

.black-border {
	border-radius: 0.3rem;
	border: 0.25rem solid black;
}
