html{
  --bg-color: #102820;
  --darker-color: #4D2D18;
  --lighter-color: #8A6240;
  --accent-color: #CABA9C;
  background-color: var(--bg-color);
  background-image: url('https://file.garden/ZRyjHl4U9RkHwMtp/Website/mediablog/mediabackground3.png');
  width: 100%;
  min-height: 100vh;
  position: relative;
}
 
body {
  color: #102820;
  font-family: 'Courier New', monospace;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  overflow-x: hidden;
}

header {
  width: 100%;

}

header img{
  display: block;
  max-height: 400px;
  margin: auto;
}


p {padding: 2px 6px 2px;}

a:link{
  color: #FFC000;
}

a:visited{
  color: #CC7722;
}

/*sidebar*/
.sidebar {
  border: 5px;
  border-style: solid;
  border-radius: 8px; /*makes it Round*/
  border-color: #4D2D18;
  background-color:	#8A6240; 
  width: 300px;
  height: 838px;
  overflow-y: auto;
  max-height: 838px;
  float: left;
  margin: 5px;
  padding: 3px;
}
/*---------*/

.homediv {
  border: 5px;
  box-shadow: 20px 20px 10px;
  background-color:	#4C6444;    
  text-align: center;
  border-width: 5px;
  border-color: #4D2D18;
  border-style: solid;
  width: 1300px;

  padding: 10px;
  margin: 0 auto;
}

/*Blog Entry*/ 

.mainentrydiv{
  width: 970px;
  overflow-y: auto;
  max-height:859px;
  float: right;
}

.container{
  display: flex;
  width: 970px;
  overflow-y: auto;
  float: right;
}

.description {
  margin: 10px;
  float: left;
  padding: 5px;
  overflow-y: auto;
  max-height: 260px;
  border-radius: 8px; (/*makes it Round*/)
  background-color: var(--lighter-color);
  border: 3px solid var(--darker-color);
  width: 100%;
  height: 260px;
  background-color:#CABA9C;
  border-style:dotted;
  border-color:#4D2D18;
}

.picture {
  width:300px;
  height:270px;
  float:left;
  overflow:auto;
  object-fit:fill;
  border-style:solid;
  border-color:	#4D2D18;
  background-color:#8A6240;
  margin: 10px;
}

.picture img {
  max-width: 220px;
  flex-shrink: 0;
  float: left;
  margin: 5px; 
}

/*---------*/

footer {
  font-size: 12px;
  width: 100%;
  position: absolute;
  bottom: 10px;
  text-align: center;
  height: 24px;
}