body {
    background-color: linen;
    background-image: url("background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 80px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
}

p {
    font-family: Arial;
    line-height: 28px;
}

a {
    text-decoration: none;
}

li {
  line-height: 30px;
}

.header {
    background-color: darkgreen;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(224, 224, 224);
}

.main-logo {
    padding: 5px 20px 5px 20px;
    display: flex;
    flex-direction: row;
    text-decoration: none;
}

.logo {
    display: inline-block;
    height: 60px;
    padding-right: 20px;
}

.title-header {
    display: flex;
    flex-direction: column;
    text-decoration: none;

}

h1, h2, h3, h4, h5, h6 {
    display: inline;
    text-decoration: none;
}

h2 {
  color: black;
}

h3, h4 {
  color: white;
}

.above-menu {
  display: flex;
  flex-direction: row;
}

.navbar {
    overflow: hidden;
}
 
.navbar a {
    float: left; 
    display: block; 
    color: white; 
    text-align: center; 
    padding: 14px 16px; 
    font-weight: bold;
}
 
.navbar a:hover {
    opacity: 0.5;
    transition: opacity 0.1s;
}

.navbar a.active {
    background-color: darkgreen; 
    color: white;
}

.main {
  display: grid;
	grid-template-columns: 10% 75% 15% ;
	row-gap: 10px
}

.sidebar {
    background-color: gray;
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 2px;
}
 
.sidebar a {
    float: left; 
    display: block; 
    color: #fff; 
    text-align: center; 
    padding: 14px 16px; 
}
 
.sidebar a:hover {
    opacity: 0.5;
    transition: opacity 0.1s;
}

.sidebar a.active {
    background-color: #4CAF50; 
    color: white;
}

.posts {
    display: flex;
    flex-direction: column;
    background-color: wheat;
    min-height: 600px;
}

.header-newpost {
  text-align: center;
  border-bottom: 1px solid gray;
  margin: 0;
  padding: 30px 0 30px 0;
}

.post {  
    background-color: wheat;
    display: flex;
    flex-direction: column;
}

h3 a {
  color: black;
}

.post-title, .author-time {
  margin: 0 0 30px 0;
}

h2 a {
  color: black;
}

.author-time {
  font-size: small;
}

.post-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.body-article {
  display: block;
  border: none;
  align-items: center;
  padding: 30px;
}

/* .bottom {
  display: block;
  width: 100%;
  height: 50px;
  background-color: black;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;

} */
