/* 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: #f14300;*/
  background-color: #b63925;
  color: black;
  font-family: courier;
  /*border-style: dashed;*/
  max-width: 900px;
  margin: auto;
}

header {
  /*border-style: dashed;*/
}

nav {
  text-transform: uppercase;
  font-size: 14pt;
  /*background-color: #f6ecf9;*/
  background-color: #fce8ec;
  padding: 15px 15px 15px 15px;
  border-bottom-style: solid;
  border-width: 1.25px;
  border-color: #f14300;
  color: #b63925;
  /*font-weight: bold;*/
}

h1 {
  font-family:courier new;
  color: pink;
  letter-spacing: 5px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0px 5px;
  /*background: #f14300;*/
}

h2 {
  font-weight: normal;
  color: #b63925;
  /*color: #3d0d43;*/
  /*color: #2b0e2c;*/
}

h3 {
  font-weight: normal;
}

p {
  color: #3d0d43;  
}

article {
  /*margin: 0px 100px 0px 0px;*/
  text-align: justify; 
  text-align-last: left;
  /*border-style: dashed;*/
  background-color: #fce8ec;
  padding: .5px 15px 4px 15px;
  height: auto;
}

a:link {
  color: #f14300;
  text-decoration: none;
  /*ef3002*/
  padding: 0px 4px 0px 4px;
  font-weight: normal;
}

a:visited {
  color: #f14300;
  text-decoration: none;
  padding: 0px 4px 0px 4px;
  font-weight: normal;
}

a:hover {
  color: #f14300;
  /*text-decoration: underline;*/
  background: pink;
  padding: 0px 4px 0px 4px;
  
  border-bottom-style: solid;
  border-width:1.25px;
  font-weight: normal;
}

a:active {
  color: #f14300;
  /*text-decoration: underline;*/
  background: pink;
  padding: 0px 4px 0px 4px;
  
  border-bottom-style: solid;
  font-weight: normal;
}