body {
  font-family: 'CloisterBlack';
  background-color: black;
  background-image: url('graphics/starbg.gif');
  color: grey;
}

@font-face {
  font-family: 'CloisterBlack';
  src: url('fonts/CloisterBlack.ttf');
}

.journal-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-top: 30px;
}

.top-row,
.bottom-row {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.entry {
  text-align: center;
}

.journal-img {
  width: 260px;
  display: block;
  margin: 0 auto 10px auto;
  transition: 0.3s ease;
}

.stacked {
  margin-bottom: 10px;
}

.journal-img:hover {
  box-shadow: 0 0 15px rgba(100, 150, 255, 0.8);
  transform: scale(1.05);
  transition: 0.3s ease;
}

.entry a {
  text-decoration: none;
  color: inherit;
}