body {
  background-color: black;
  color: grey;
  background-image: url('graphics/starbg.gif')
}

.thought-entry {
  border: 2px solid #5e5aad;
  background-color: black;
  color: #aaa;
  font-family: 'Times New';
  max-width: 700px;
  margin: 50px auto;
}

.thought-header {
  border-bottom: 2px solid #5e5aad;
  padding: 4px 10px;
  text-align: right;
  font-style: italic;
  color: #7f7ce0;
  font-size: 13px;
}

.thought-body {
  display: flex;
  padding: 15px;
  gap: 20px;
}

.thought-image {
  border: 2px solid #7aa2e0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thought-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thought-text {
  flex: 1;
  font-size: 14px;
  color: #aaa;
}