* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #1a1a2e;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;   /* keeps image still while you scroll */
  color: #e0e0e0;
  font-family: 'Georgia', serif;
  font-size: 17px;
  line-height: 1.8;
}

.page {
  max-width: 720px;
  margin: 4em auto;
  padding: 4em 2em;

  background: rgba(20, 20, 35, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border-radius: 16px;
}

h1 {
  font-size: 2.2em;
  color: #fff;
  margin-bottom: 0.25em;
  font-weight: normal;
}

h2 {
  font-size: 1.4em;
  color: #fff;
  margin: 2em 0 0.5em 0;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h3 {
  font-size: 1.1em;
  color: #ccc;
  margin: 1.5em 0 0.4em 0;
}

p {
  margin-bottom: 1.25em;
  color: #c0c0c0;
}

hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 2.5em 0;
}

a {
  color: #a0c4ff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(160,196,255,0.4);
}

a:hover {
  color: #fff;
}

strong {
  color: #fff;
}

ul, ol {
  margin: 0 0 1.25em 1.5em;
}

li {
  margin-bottom: 0.4em;
}

/* Section divider styling */
.section {
  margin-bottom: 3em;
}