/* Full-page background */
body {
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTprls1IK6QUycYPsH3b6f61DJfsLNkSyPUkwoPA7PnYw&s=10');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  font-family: 'Georgia', serif; /* Change to preferred font */
  color: black;                  /* All text in black */
  text-align: center;            /* Center all text horizontally */
  padding: 50px 20px;            /* Give some top padding so content isn’t at the very top */
  box-sizing: border-box;
}

/* Links styling */
a {
  color: black;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Container to keep content together and control width */
.container {
  max-width: 800px;
  margin: 0 auto; /* Center horizontally */
}

/* Headings spacing */
h1, h2 {
  margin: 20px 0;
}

/* List styling */
ul {
  list-style-position: inside;
  padding: 0;
  margin: 0 0 20px 0;
}

/* Image styling */
img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}
