/* 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: Verdana;
}

.comic-list {
  list-style-type: none; /* Removes the dots */
  padding: 0;
}

.comic-list li {
  margin: 10px 0; /* Puts space between buttons */
}

.retro-btn {
  display: inline-block;
  background-color: #e0e0e0; /* Classic gray button color */
  color: black;
  text-decoration: none;
  padding: 8px 15px;
  border-top: 2px solid #fff;    /* Lighting effect */
  border-left: 2px solid #fff;
  border-right: 2px solid #808080; /* Shadow effect */
  border-bottom: 2px solid #808080;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
}

.retro-btn:active {
  /* This makes it look like the button is being pressed */
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}