@charset "utf-8";
/* CSS document */

body {
	background-image: url("../imagenes/fondo.jpg");
}

ul {list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}

li { flex-grow: 1; }

a {
	display: block;
	padding: 1em;
	background-color: Aquamarine;
	text-align: center;
	margin-right: 0.2em; margin-bottom: 0.2em;
	text-decoration: none;
	color: #000000;
}

a:hover {background-color: LightBlue; }

h1 {text-align: center;
	font-family: "Courier New";
	color: grey;
	font-size: 3.2em; 
}

h2 {
	text-align: center;
	font-family: "Courier New";
	color: purple;
	font-size: 2.5em; 
}

tr {
  background-color: Aquamarine;
}