body{
  background-image: url('/images/dim_bg.png')
}

#main{
  width: 700px;
  
  display:flex;
  flex-direction: column;
  gap: 10px;
}

#post_head{
  height: 40px;
    
  box-sizing: border-box;
  padding: 0 0 0 8px;
  
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  
  background: #d0d0d050;
}

.post_title{
  margin: 0;
  
  font-size: 16px;
  color: #d0d0d0;
}

#backbutton{
  width: 80px;
  height: 100%;
  
  box-sizing: border-box;
  border: solid 2px #d0d0d0;

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

#backbutton_a{
  height: 100%;
  width: 100%;
  
  display: flex;
  justify-content:center;
  align-items: center;
  
  font-size: 16px;
  color: #d0d0d0;
}

#post_body{
  box-sizing: border-box;
  padding: 8px;
  
  background: #d0d0d050;
}

.text_body{
  margin: 5px;
  
  text-align: justify;
  color: #d0d0d0;
}

.inline_link{
  color: #d0d0d0;
}

.inline_link:visited{
  color: #d0d0d0;
}

#footer{
  height: 40px;
  
  box-sizing: border-box;
  padding: 0 8px 0 8px;

  display:flex;
  justify-content: space-between;
  align-items: center;

  font-size: 15px;
  
  background: #d0d0d050;
}

.footertext{
  margin: 0;
  color: #d0d0d0;
}