body {
  background-color: black;
  color: #fceeee;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: 'MyCustomFont';
  src: 'Unifont.otf') format('otf');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Unifont', monospace;
}
header {
  text-align: center;
  padding: 20px;
}

.logo-container img {
  width: 220px;
}
.handdrawn-box {
  border: 12px solid transparent;
  padding: 20px;
  width: fit-content;

  border-image: url('https://i.imgur.com/OYb6n1n.png') 30 round;
  font-family: 'Comic Sans MS', cursive;
  background-color: white;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #fceeee;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  font-size: 0.95em;
}

nav a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  border: 1px dotted #fceeee;
}

.header {
  text-align: center;
  font-style: italic;
  border-bottom: 1px dotted #fceeee;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.content-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.content-wrapper {
  display: flex;
  justify-content: center; /* Center children horizontally */
  gap: 40px;
  flex-wrap: wrap;
}

.entries {
  flex: 1 1 200px;
  text-align: center;
  border-right: 1px dotted #fceeee;
  padding-right: 10px;
}

.entries ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.entries li {
  padding: 5px;
  cursor: pointer;
}

.entries li.selected {
  background-color: #fceeee;
  color: #000;
}

.entry-area {
  flex: 2 1 600px;
