* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  background: #dbdbdb
}

body {
  display: flex;
  justify-content: center;
  font-family: Roboto, sans-serif;
}

.main {
  background: white;
  box-shadow: 10px 10px 5px #bfbfbf;
  width: 800px;
  min-height: 100px;
  display: flex;
  flex-direction: column;

  padding: 20px;
  margin: 20px 0;
}

.header {
  /* background: yellow; */
  height: 150px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar {
  /* background: aqua; */
  margin: 10px 0;
  margin-bottom: 0;
  height: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
}

.navbar-item {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.content {
  /* background: magenta; */
  
  display: flex;
}

.front-page {
  /* background: lime; */

  margin: 10px;
  flex: 2;

  display: flex;
  flex-direction: column;
}

a {
  color: black;
}

.article {
  min-height: 280px;
  padding: 5px 10px;
  border-bottom: 1px dashed black;
  position: relative;
  margin-bottom: 10px;
  text-decoration: none;
  color: black;
}

.article:hover {
  color: #676767;
}

.last-article {
  border-bottom: none;
}

.front-page-heading {
  margin: 12px 0;
  font-size: 26px;
}

.article-blurb {
  font-family: Roboto, sans-serif;
  font-size: 18px;
  color: #676767;
  margin: 6px 0;
  margin-bottom: 34px;
}

.featured {
  /* background: blue; */

  margin: 10px 10px 10px 0;
  padding-left: 10px;
  border-left: solid 1px #676767;
  flex: 1;
}

.featured-article {
  margin: 7px 0;
}

p {
}

.date {
  font-family: Roboto, sans-serif;
  font-size: 18px;
  color: #676767;
  margin: 6px 0;
  position: absolute;
  bottom: 0;
  right: 10px;
}

h3 {
  margin: 12px 0;
  font-family: Roboto, sans-serif;
}
