/* 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: white;
  color: black;
  font-family: tan;
}

.mydiv {
  border: 8px solid black;
  background-color: lightgray;
  padding: 1px;
  text-align: center;
  width: 600px;
  margin: auto;/* Centers the div horizontally */
}

.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%; /* Optional: set a width smaller than the page width */
}

p {
  text-align: center;
}

/* Unvisited link */
a:link {
  color: #962135; /* Crimson */
}

/* Visited link */
a:visited {
  color: #d18e99; /* Bubblegum */
}

/* Mouse over link */
a:hover {
  color: #b05161; /* Blush */
}

/* Selected link */
a:active {
  color: #b05161; /* Blush */
}

.mylinks {
  text-align: center;
  margin: auto;/* Centers the div horizontally */
}  
