/* 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." */
body {
  background-color: black;
  color: white;
  font-family:serif;

  gif {
  width: 600px;  /* Resizes width to 200px */
  height: auto;  /* Automatically adjusts height to maintain aspect ratio */
}
} 
 img { width: 50px
height auto }

a {
  color: #ff0000; /* Sets all links to red */}


