/* General layout */
body {
  background-color: #f8eaff; /* soft pastel lavender */
  font-family: Verdana, Arial, sans-serif;
  color: #333;
  text-align: center;
  margin: 0;
  padding: 0;
}

#container {
  width: 800px;
  margin: 20px auto;
  border: 3px double #999;
  background: #fff;
  padding: 10px;
  box-shadow: 5px 5px 0px #ccc;
}

/* Header */
#header {
  background: #e3d5ff;
  border-bottom: 2px dashed #999;
  padding: 10px;
}

#header h1 {
  font-family: "Comic Sans MS", cursive, sans-serif;
  font-size: 28px;
  color: #5a2ca0;
  margin: 5px 0;
}

/* Navigation */
#nav {
  background: #fceaff;
  padding: 8px;
  border-bottom: 2px solid #ccc;
}

#nav a {
  color: #a12ca0;
  text-decoration: none;
  font-weight: bold;
  margin: 0 5px;
}

#nav a:hover {
  color: #ff4da6;
  text-decoration: underline;
}

/* Content */
#content {
  padding: 15px;
  text-align: left;
}

#content h2 {
  font-size: 20px;
  border-bottom: 1px dotted #aaa;
  color: #5a2ca0;
  margin-top: 20px;
}

/* Footer */
#footer {
  background: #e3d5ff;
  padding: 8px;
  font-size: 12px;
  border-top: 2px dashed #999;
  margin-top: 20px;
}