/* 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: #FFFFC5;
  color: #006400;
  font-family: Tahoma, Geneva, sans-serif;
  margin: 20px;

}
H1 {
  color: #339999;
  font-family: Impact, Charcoal, sans-serif;
  border-style: dotted dashed solid double;
    border-color: #ff0000;
  border-width: 5px;
  padding: 30px;
  background-color: #66CCcc;
}
h2 {
  color: #ff8000 ;
  font-family: georgia;
  font-variant: small-caps;}
h3 {
  color: #339999;
  font-family: courier, monospace;
  font-weight: bold;}
h4 {
  color: #339999;
  font-family: helvetica;
  font-style: oblique;}
h5 {
  color: #339999;
  font-family: arial;
  font-style: italic;}
  
table {
  width: 50%;
  border: 1px dotted #0000ff;
  margin-right: 20%;
  margin-left: 20%;
}
td {
  border: 1px dotted #0000ff;
  padding: 5px;
  text-align: center;
} 
ul {
  list-style-type: square;
}
/* unvisited link */
a:link {
  color: red;
  text-decoration: none;
  background-color: yellow;}
/* visited link */
a:visited {
  color: green;
  text-decoration: none;}
/* mouse over link */
a:hover {
 
  text-decoration: underline;}
/* selected link */
a:active {
  color: blue;
  text-decoration: underline;
}
 .tabla1 {
  padding:4px;
  border:2px dotted  #0000ff;
  color: #0000ff;
  }