body {
  background-color: black;
  background-image: url('graphics/croppedstars.gif');
  color: white;
  font-family: 'CloisterBlack', monospace;
  margin:0;
  padding: 0 20px;
  text-align: center;
  transition: background-image 0.4s ease-in-out;
}

@font-face {
  font-family: 'CloisterBlack';
  src: url('fonts/CloisterBlack.ttf');
}

.entry {
  width: 800px;
  margin: 40px auto;
  border: 1px solid white;
  background-color: black;
}

.title-bar {
  background-color: #a30000;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  border-bottom: 1px solid white;
  height: 15px;
}

.name {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.body {
  display: flex;
  padding: 10px;
  align-items: stretch;
}

.text {
  width: 100%;
}

.text p {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
}

a:hover {
  color: solid white;
  text-decoration: underline;
}

a:visited {
  color: #a10000;
  text-decoration: none;
}

a {
  color: #bf0000;
  text-decoration: none;
}

a:active {
  color: grey;
  text-decoration: none;
}

.gallery {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.thought-image {
  border: 2px solid red;
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.thought-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}