body {
  background: black; 
  font-family: Verdana;
  color: white;
  font-size: 11px;
}

body a:link, a:visited {
  color: rgb(255, 242, 0);
}

body a:hover {
  color: rgb(255, 12, 93)
}

container {
  max-width: 100%;
/* this is the width of your layout! */
/* if you change the above value, scroll to the bottom
and change the media query according to the comment! */
  margin: 0 auto;
/* this centers the entire page */
}

main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: normal;
  column-gap: 10px;
  margin-top: 80px;

}


.main {
  background-color: black;
  border: 3px double white;
  padding: 10px;
  width: 40%;
  height:500px;
  order: 2;
  overflow: scroll;
}


.sidecont {
  background-color: black;
  color: white;
  border: 3px double white;
  padding: 20px;
  max-width:30%;
  height: 250px;
  order: 1;
}

.entry {
  color: white
}

.entry > time {
  padding: 10px;
  color: rgb(255, 242, 0);
}

.entry a:hover {
  color: rgb(255, 12, 93)
}

.feeling, .song, .drinking{
  display: flex;
  align-items: center;
  font-weight: 500;
}

.feeling::before {
  content: "[ feeling: ";
  margin-right: 10px;
}

.song::before {
  content: "[ listening to: ";
  margin-right: 10px;
}

.drinking::before {
  content: "[ drinking: ";
  margin-right: 10px;
}

.feeling::after, .song::after, .drinking::after {
  content: " ]";
  margin-left: 10px;
}