/* Base styles for the whole page */
body {
  margin: 0;
  padding: 0;
  background-color: #0b1020;  /* deep navy background */
  color: #f5f0e6;             /* warm off-white text */
  font-size: 20px;
  line-height: 1.6;
  font-family: "Georgia", "Times New Roman", serif;
}

/* Centered content area */
#container {
  max-width: 820px;
  margin: 40px auto;
  padding: 28px 24px;
  background-color: #151b2f;      /* slightly lighter navy */
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
}

/* Main heading */
h1 {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 2.1em;
  text-align: center;
  color: #ffe9a3;                 /* soft golden text */
  border: 3px solid #ffcc66;      /* warm border */
  border-radius: 10px;
  padding: 12px 18px;
  margin-top: 0;
  margin-bottom: 24px;
}

/* Paragraph text */
p {
  margin-bottom: 16px;
}

/* Small note text */
.note {
  margin-top: 24px;
  font-size: 0.9em;
  color: #d0c7b6;
}

/* Links */
a {
  color: #ff914d;                 /* soft orange */
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #ffd28a;                 /* lighter orange on hover */
}
