/*
  Bryce Nguyen
  October 8, 2021
  Section AB

  This styles.css file defines the style for index.html and about.html. It gives
  both pages a consistent look.
*/

/*
  Note: This body rule set is to get you started
*/
body {
  background-color: #9999cc;
  font-family: 'Roboto', sans-serif;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

h1 {
  text-align: center;
  font-size: 40px;
  text-decoration: underline;
  text-shadow: 1px 1px 1px purple;
}

h2, h3 {
  font-size: 30px;
}

img {
  max-width: 300px;
  max-height: 350px;
  margin: auto;
  border: 5px solid purple;
  padding: 5px;
}

.caption {
  font-size: 12px;
  color: #222222;
}

::selection {
  background: #F1EB9C;
}

a:hover {
  color: yellow;
}

ul li {
  list-style-type: circle;
}