/* Basic CSS setup */

body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
}

h1 {
  font-family: "Courier New", monospace;
  font-size: 2em;
  color: lightblue;
}

p {
  font-size: 1.2em;
  color: #ddd;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}
