html, body {
  height: 100%;
  margin: 0;
  background-color: white;
}

a {
    text-decoration: none;
}

#full_blog_page {
   display: grid;
   grid-row: 0.4fr 0.9fr;
}

#actionBar {
    display:flex;
    flex-direction: row;
    width:100%;
    height:80px;
    background-color:black;
    color: white;
    font-size: 2rem;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-style:italic;
    align-items: center;
}

#header {
    margin-left: 80px;
    margin-right: 10px;
}


#main-page {
    display: flex;
    flex-direction: row;   
}

#choice-header {
    font-size: 2rem;
    text-align: center;
    margin-top: 30px;
}

.blog-topic {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-left: 8px;
    margin-top: 30px;
}

.blog-topic:hover {
    color: darkgreen;
}

.separator {    
    font-weight: bold;
    text-align: center;
}

#blog-choices-panel {
  flex: 1;
  position: relative;
  padding-right: 20px;
}

#blog-choices-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 2px;
  height: 100%;
  background: linear-gradient(
      to bottom,
      transparent,
      #ccc 20%,
      #ccc 80%,
      transparent
  );
}

#blog-displayer {
    flex: 2;     
    margin-left: 30px;
    margin-top: 20px;
    margin-right: 30px;
    display: grid;
    grid-template-rows: 0.15fr 1.5fr 0.2fr;
}

#docViewer {
    width: 100%;
    padding-left: 15px;
    padding-top: 20px;
}

#topic-bar {
  width: 100%;
  background-color: rgb(107, 167, 95);
}

#bottom-bar {
  width: 100%;
  background-color: rgb(107, 167, 95);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#topic-title {
    text-align: center;
    color: white;
    font-size: 2rem;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;   
}

#backToMain {   
    width: 250px;
    height: 40px;
    border: 3px solid darkgreen;
    background-color: white;
    border-radius: 6px;
    color:black;
    font-size: 1.2rem;
    text-align: center;
}