*,
*::before,
*::after {
	box-sizing: border-box
}

body {
	padding: 0;
	margin: 0;
	background-color: #253340;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 1.2rem;
	color: #1eb38b;
	min-height: 100vh
}

.full-height-grow {
	display: flex;
	flex-direction: column
}

.brand-logo {
	display: flex;
	align-items: center;
	font-size: 1.25em;
	color: inherit;
	text-decoration: none
}

.brand-logo-name {
	margin-left: 1rem
}

.main-nav ul,
.footer-nav ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none
}

.main-nav a,
.footer-nav a {
	color: inherit;
	text-decoration: none;
	padding: 1rem
}

.main-nav a:hover,
.footer-nav a:hover {
	color: white
}

.main-header,
.main-footer {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.main-header {
	height: 140px;
	margin: 0px 80px 0px 80px
}

@media (max-width: 900px) {
	.main-header {
		height: 80px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin: 0px 5px 0px 1px
	}
}

.main-footer {
	height: 60px;
	background-color: #202027;
	font-weight: bold
}

.social-link img {
	width: 1em;
	margin-right: .25rem
}

.main-footer .container {
	display: flex;
	justify-content: space-between
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	flex-grow: 1
}

.title {
	font-weight: 500;
	font-size: 2em;
	margin-bottom: 1rem;
	margin-top: 0;
	color: white
}

.subtitle {
	font-weight: 500;
	font-size: 1.2em;
	margin-bottom: 2rem
}

.btn {
	color: black;
	background-color: #1eb38b;
	padding: .75rem 1.5rem;
	border-radius: .5rem;
	text-decoration: none;
	font-size: .9rem;
	outline: none;
	border: none;
	cursor: pointer
}

.btn:hover {
	background-color: #2b9377
}

.btn:focus {
	background-color: #2b9377
}