/* Reset */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #c6e2ff 0%, #f0ffff 100%);
  color: #003344;
  image-rendering: pixelated;
}

/* Navbar */
.navbar {
  background-color: #e0f7ff;
  border-bottom: 2px solid #00aaff;
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Button-like links */
.clickable-box {
  background: linear-gradient(to bottom, #ffffff 0%, #c0e6ff 100%);
  border: 2px solid #00aaff;
  color: #003344;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 3px 5px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.clickable-box:hover {
  background: linear-gradient(to bottom, #d9f3ff 0%, #a4dcff 100%);
  border-color: #007acc;
  color: #001f33;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

/* Page title */
.title {
  font-size: 2.2em;
  margin: 40px 20px 10px 20px;
  text-shadow: 1px 1px 0 #fff, 2px 2px 5px #00aaff;
}

/* Body text */
p {
  font-size: 1.1em;
  margin: 10px 20px;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

/* Hidden chunks */
.chunk {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.chunk2 {
  opacity: 0;
  transition: opacity 0.5s ease;
}
