/* 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: beige;
  color: black;
  font-family: Verdana;
}
img {
  width: 300px; /* Sets a fixed width of 300 pixels */
  height: 400px; /* Sets a fixed height of 200 pixels */
}
.button {
    padding: 1px 6px;
    border: 1px outset buttonborder;
    border-radius: 3px;
    color: buttontext;
    background-color: Pink;
    text-decoration: none;
}