/* 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: 'Courier Prime', monospace;
}

h {
  background-color: white;
  color: black;
  font-family: 'Courier Prime', monospace;
}


table {
  font-family: 'Courier Prime', monospace;
  background-color: #e6e6e6
  /*not sure why this works like this but i like the way it looks so its staying yay */
  border-collapse: collapse;
  width: 100%;
}

th {
  background-color: #D3D3D3;
  border: 1px solid #dddddd;
  text-align: center;
  padding: 8px;
}

td {
  background-color: white;
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: blue;
}

 p   {
    color: black;
    font-family: 'Courier Prime', monospace;
 }
 h1  {
     color: black;
    font-family: 'Courier Prime', monospace;
    
 h2  {
    color: black;
    font-family: 'Courier Prime', monospace;
 }      
 h3  {
     color: black;
    font-family: 'Courier Prime', monospace;
 }      
 h4  {
     color: black;
    font-family: 'Courier Prime', monospace;
 }      
 h5  {
     color: black;
    font-family: 'Courier Prime', monospace;
 }      
 h6  {
     color: black;
    font-family: 'Courier Prime', monospace;
 }
     
a:link {
  background-color:Silver;
  padding:10px;
  text-shadow: 2px 2px #666666;
  text-decoration: underline;
}

a:visited {
  color: cornsilk;
  background-color: Gray;
  text-decoration: none;
}
a:hover {
  color: cornsilk;
  background-color: LightSlateGray;
  text-decoration: underline;
}
a:active {
  color: cornsilk;
  background-color: transparent;
  text-decoration: underline;
}
 
 

