body {
  margin: 0;
  padding: 0;
  background-color: #111;
  font-family: 'JetBrains Mono', monospace;
  color: #eee;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1, h2, .date, li, p {
  font-family: 'JetBrains Mono', monospace;
}

h1 {
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.wrapper {
  border-radius: 10px;
  padding: 20px 30px;
  max-height: 90vh;
  overflow-y: auto;
  width: 900px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.wrapper::-webkit-scrollbar {
  width: 6px;
}
.wrapper::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 3px;
}

header h1 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

header h1::after {
  content: "|";
  display: inline-block;
  margin-left: 4px;
  opacity: 0;
  animation: fadeCaret 1s ease-in-out infinite;
}

@keyframes fadeCaret {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

header h1 {
  text-shadow: 0 0 5px #8c0000;
}

.entry {
  background-color: #131313;
  border-radius: 6px;
  padding: 16px 24px;
  margin-bottom: 30px;
  border-left: 3px solid #444;
  box-shadow: 0 0 10px #00000055;
}

.date {
  color: #999;
  font-size: 13px;
  font-style: italic;
  margin-bottom: 4px;
}

h2 {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

p strong {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 15px;
  color: #dddddd;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  margin: 6px 0;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #888;
  font-size: 18px;
}

.wrapper {
  scrollbar-width: thin;
  scrollbar-color: #444 #1a1a1a;
}
.wrapper::-webkit-scrollbar {
  width: 8px;
}
.wrapper::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 4px;
}

.note {
  font-family: "JetBrains Mono", monospace;
  color: #999;
  text-align: center;
  margin: 40px auto;
  font-size: 13px;
  font-style: italic;
  opacity: 0.7;
}
