.archivo-black-regular {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.side-navigation a{
	text-decoration: none;
	font-family: "Archivo Black", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 3rem;
	line-height: 1.2;
	color: black;
}

.side-navigation a:hover {
	color: white;
	text-decoration: none;
}

body {
  background-color: #4FB9FF;
  color: black;
  font-size: 18px;
  width:80%;
  margin-left:auto;
  margin-right:auto;
}

.middle-container{
  flex-direction: column; 
}

.marquee {
  color: black;
}
.container {
  display: flex; 
}

.logo {
  flex: 2;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
.main {
  flex: 3;
  min-width: 300px;
  max-width: 600px;
  margin-left: 50px;
  margin-right: 50px;
}
.side {
  flex: 1;
  max-width: 275px;
}
.blog-post-container
	{
		background: #F5F5F5;
		border-radius: 25px;
		padding: 25px;
		color: black;

	}
	
.bold-bigger
{
  font-size: 1.4rem;
  font-weight: bold;
}
	
.bg-green
{
 background-color: #53784D;
  border: 4px;
  margin: 15px;
  border-color: white;
  border-radius: 2px;
  border-style: solid;
  padding: 10px; 
}

.center-text
{
  text-align: center;
}

.left-align-text
{
  text-align: left;
}

.bg-image
{
 background-image: url("images/de_rats.jpg"); 
 background-repeat: repeat;
}

@media (max-width: 800px) {
  .container {
    flex-direction: column;
  }
  .logo {
    order: 1;
  }
  .main {
    order: 2;
  }
  .side {
    order: 3;
  }
  #logo-image {
   height: 70px;
  margin-left: 12px; 
  }
}