/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
/* burger er */
body {
  background-color: black;
  color: Blue;
  font-family: "ITC Eras Demi Regular";
  background-image: url("backgroun.png");
}
img {
  max-width: 100%;
  height: auto; /* Ensures image scales proportionally and stays within its container */
}
a:link {
  color:aqua;
}
a:visited {
  color:darkcyan
}
img {
  width: 400px;
  height: auto; /* Maintains aspect ratio */
}