body {
  background-color: #111;
  color: #a8c7ff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 2em;
}

/* Headings */
h1, h2, h3 {
  color: #cfe3ff;
  font-weight: bold;
}

/* Links */
a {
  color: #7ab6ff; /* light blue links */
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: #b3d4ff; /* softer glow effect on hover */
  text-decoration: underline;
}

img {
  width: 200px;   /* change to desired size */
  height: auto;   /* keeps correct proportions */
  border-radius: 8px; /* optional: rounds corners */
  display: block;
  margin: 1em auto; /* centers the image */
}
