 .row {
  display: flex;
}

.col-1 {
  position: fixed;
  top: 200px;
  left: 40px;
  width: 20%;
  height: 100%;
  padding: 20px;
}

.col-2 {
  height: 100%;
  margin-left: 20%;
  padding: 30px;
  flex-basis: 70%;
}

.container {
	background-color: #333;
	overflow: hidden;
	padding: 10px 0;
	align-items: center;
	text-align: center; /* modify this property based on user preference */
}

.container ul {
	list-style-type: none;
	margin: 0;
	padding: 6px;
	overflow: hidden;
	margin-left: 300px;
}

.container ul li {
	float: left;
}

.container li a {
	display: block;
	color: white;
	text-align: center;
	padding: 10px 30px;
	text-decoration: none;
}

.container li a:hover {
	background-color: #111;
	border-bottom: 4px solid white;
}

.current {
	background-color: #4CAF50;
}

.home-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 40%;
  height: auto;
  padding: 5px;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  align-items: right;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  margin-right: 5px;
}

.btn {
	display: inline-block;
	padding: 5px 5px;
	background-color: #003876;
	color: white;
	text-align: center;
	font-size: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.btn:hover {
	background-color: #3e8e41;
}

 .archive__item-title {
    margin-bottom: -10px;
 }
 .archive__item-excerpt {
    margin-bottom: 30px;
 }

 footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #333333;
  color: white;
  text-align: center;
  padding: 10px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f1f1f1;
  padding: 10px;
  z-index: 1;
}

.social-media-icons {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.social-media-icons img {
	height: 5px;
	margin: 5px;
}