/* 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: black;
  font-family: Verdana;
  #wrap {width: 40%; margin: auto;
}
b, strong {
  color: red;
}
p {
  font-size: 12px; /* Example using pixels */
  color: white; /* Paragraphs are orange */
}
h1 {
  color: red; 
  margin: 0;
  padding: 0;
}
h2 {
  color: red;
  margin: 0;
  padding: 0;
}
h4 {
  color: red;
  margin: 0;
  padding: 0;
}
/* Add a black background color to the top navigation */
.topnav {
  background-color: black;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: red;
  text-align: right;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 12px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: red;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: black;
  color: white;
}