body {
 background-image: url("16.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'sour gummy', serif;
  font-size: 20px; /* makes it big */
  color: #24211f;
}

.container {
  display: grid;
  box-sizing: border-box;
  width: 800px;
  height: 600px;
  margin: 20px auto;
  grid-template-rows:  560px 40px;
  grid-template-columns: 200px 600px;
  grid-template-areas: 
  "index journal"
  "index journal";
  gap: 10px;
}
.header{
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  padding-left: 10px;
  border: #5f4a4a 2px solid;
  background-color: #363131;
  color: beige;
  border-radius: 5px;
  height: 30px;
}
.sidebar{
  display: flex;
  flex-direction: column; 
  grid-area: index;
  gap: 10px;
  justify-content: space-between;
}

.index{
  display: flex;
  flex-direction: column;
  height: 400px;
  border: #272424 2px solid;
  border-radius: 5px;
  padding: 15px;
  font-size: 16px;
}
.journal{
  box-sizing: border-box;
  grid-area: journal;
  border: #1b1717 2px solid;
  border-radius: 5px;
  padding: 13px;
  overflow-y: scroll;
  font-size: 17px;
  scrollbar-color: rgb(49, 40, 40) rgba(224, 210, 210, 0) ;
  scrollbar-width: thin;
  
}
.img{
  border: #6b6060 2px solid;
  border-radius: 5px;
}
.stories{
  white-space: pre-wrap;
}
.entry{
  display: none;
}
.entry-active{
  display: block;
}

.entry-link{
  text-decoration: none;
  color: #1b1717;
}
.entry-link:hover{
  text-decoration: underline;
  transform: translateY(-2px);
  transition: 0.3s;
}

.entry-link2{
  text-decoration: none;
  color: #ddc7c7;
}
.entry-link2:hover{
   text-decoration: underline;
  transform: translateY(-2px);
  transition: 0.3s;
}


