@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  background: #cceeff; /* light baby blue */
  color: #003366;
  cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur817.cur'), auto;
}

header {
  background: #99ccffcc;
  padding: 15px 10px;
  text-align: center;
  border-bottom: 3px solid #003366;
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  margin: 0;
  font-size: 2rem;
  color: #003366;
  text-shadow: 1px 1px 2px #fff;
}

nav ul {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #003366;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
  color: #66b3ff;
  text-shadow: 0 0 5px #66b3ff;
}

main {
  max-width: 800px;
  margin: 20px auto;
  background: #e6f2ffcc;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px #66b3ffaa;
}

.diary-entries {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.entry {
  background: #ffffffcc;
  border-radius: 15px;
  padding: 15px;
  border: 2px solid #99ccff;
  box-shadow: 0 0 8px #66b3ff99;
}

.entry h2 {
  margin-top: 0;
  color: #0059b3;
}

.entry p {
  font-size: 0.85rem;
  line-height: 1.3;
  color: #003366;
}

footer {
  margin: 40px 0 10px 0;
  text-align: center;
  font-size: 0.7rem;
  color: #003366;
}
