/* Reset Styles */
/*
:root {
  color-scheme: light dark;
}
*/

/* Box sizing rules */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Set core body defaults */
body {
	margin: 0 1em;
	min-height: 100vh;
	font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* Make images easier to work with */
img,
picture {
	max-width: 100%;
	display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
	font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Flexbox Styles */
.wrapper {
	max-width: 1024px;
	margin: 0 auto;
}

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

.column {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	padding: 1em;
}

.double-column {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
}

@media screen and (min-width: 800px) {
	.column {
		flex: 1;
	}

	.double-column {
		flex: 2;
	}
}

/* Navbar Styles */
.topnav {
	background-color: #01395e;
	overflow: hidden;
	margin: 0 -1em;
	border-bottom: 4px solid #0074a6;
}

.topnav a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}

.topnav a:hover {
	background-color: #ddd;
	color: black;
}

.topnav a.active {
	background-color: #0074a6;
	color: white;
}

.topnav .icon {
	display: none;
}

@media screen and (max-width: 600px) {
	.topnav a:not(:first-child) {
		display: none;
	}
	.topnav a.icon {
		float: right;
		display: block;
	}
}

@media screen and (max-width: 600px) {
	.topnav.responsive {
		position: relative;
	}
	.topnav.responsive a.icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
}

/* Custom styles */
a {
	text-decoration: none;
	color: #0074a6;
}

a:hover {
	color: #e14260;
}

wrapper {
	padding: 1em;
}

footer {
	margin-top: 1em;
	margin-bottom: 1em;
	text-align: center;
	font-size: small;
	border-top: 1px solid #0074a6;
}

.center {
	text-align: center;
}

.border {
	margin: 0 1em;
	border: 4px solid #0074a6;
	border-radius: 5px;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	color: #01395e;
}

input,
textarea {
	display: block;
	width: 100%;
}

address {
	font-size: larger;
	font-weight: bold;
}

