html {
	scroll-behavior: smooth;
}

body {
	background-color: #f7f5f2;
	margin: 0;
}

h1 {
	font-size: 3em;
	color: #283133;
	font-family: 'Allerta Stencil', sans-serif;
	letter-spacing: .25em;
}

h2 {
  margin: 0;
	color: #283133;
  font-size: 2em;
  font-family: 'Allerta Stencil', sans-sans-serif;
}

h3 {
  margin: 0;
	color: #283133;
  font-size: 1.5em;
  font-family: 'Big Shoulders Text', sans-sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
	font-family: 'Big Shoulders Text', sans-serif;
	font-size: 1.5em;
}

@media only screen and (max-width: 900px) {
	h2 {
		font-size: 2em;
	}

	p {
		font-size: 1em;
	}
}

.header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 2% 3%;
	align-items:
}

.title {
	display: inline;
	font-size: 2em;
	font-family: 'Allerta Stencil', sans-serif;
	font-weight: bolder;
	letter-spacing: .1em;
	color: #283133;
	margin: 0;
	transition: color .3s;
}

.title:hover {
  color: #28313385;
  cursor: pointer;
}

.headerItem {
	display: inline;
  font-size: 1.5em;
	font-family: 'Allerta Stencil', sans-serif;
  color: #283133;
  letter-spacing: .2em;
  margin-left: 1em;

	transition: color .3s;
}

.headerItem:hover {
  color: #28313385;
  cursor: pointer;
}

@media only screen and (max-width: 900px) {
	.header {
		flex-direction: column;
		justify-content: center;
	}

	.title {
		justify-content: center;
		text-align: center;
		font-size: 1.5em;
	}

	.headerItems {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: center;
		padding: 1em;
		align-items: center;
	}

	.headerItem {
		padding: .25em;
		font-size: 1em;
		margin: 0;
	}
}

.divider {
	height: 1px;
	background-color: #283133;
	margin: 2em 1em;
}

.footer {
	display: block;
	height: auto;
	background-color: #f7f5f2;
	margin: 3em 0 0 0;
	padding: 1em;
}

.footerText {
	font-size: 1em;
	color: #283133;
	margin: 0;
	text-align: center;
  padding: 1em;
	transition: color .3s;
}

.footerText:hover {
	  color: #28313385;
	  cursor: pointer;
}

.headline {
  font-size: 3em;
  text-align: center;
  margin: 50px 0 0 0;
}

.blogCard {
  width: 50%;
  margin: 2em auto;
  background-color: white;
  cursor: pointer;
	border-radius: .3em;
}

.cardContent {
  padding: 1.5em;
}

.blogTitle {
  display: block;
  margin: 0;
}

.date {
  font-size: 1em;
  margin: 0;
}

.previewImage {
  width: 100%;
  height: 20em;
  margin: 0;
  object-fit: cover;
  border-radius: .3em
}

@media only screen and (max-width: 900px) {
	.blogCard {
		width: 90%;
	}

	.previewImage {
		height: 12em;
	}
}

.centerText {
  text-align: center;
}

.content {
  margin: 1em 0 0 0;
  text-align: justify;
}

.more {
  margin: 1em 0 0 0;
  font-size: 1em;
  text-align: center;
	transition: color .3s;
}

.more:hover {
  color: #28313385;
}
