/* 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." */

:root {
  --color1: ForestGreen;
  --black1: #1e7d1e; /*black1*/ 
  --black2: #1b6f1b;
  --black3: #176117;
  --black4: #145314;
  --black5: #114511;
  --black6: #0d370d;
  --white1: #389638;
  --white2: #4ea24e;
  --white3: #64ad64;
  --white4: #7ab97a;
  --white5: #90c590;
  --white6: #a6d0a6;
  --white7: #bcdcbc;
  --white8: #d2e7d2;
  --white9: #e8f3e8;
  --white4: #7ab97a;
}



body {
  background-color: white;
  color: black;
  background-image: url('imagen/wallpaper.jpeg');
}

h1 {
  color:#e8f3e8;
  width:600px;
  border: 2px var(--black3) Ridge;
  margin: 0 auto;
  font-size:3rem;
  font-family: 'Lobster', cursive;
  text-shadow: 2px 2px 3px var(--white4);
  background-color: var(--color1);
}



.footer {
  text-align:center;
  padding:15px;
  width:800px;
  background-color: var(--black1);
  margin: 0 auto 10px auto;
  border: 4px var(--black3) Ridge;
  border-radius:8px;
}


.contenido {
  width:820px;
  height: 708px;
  padding:0;
  margin: 0 auto 14px auto;
}

.tabla {
  background-color: var(--black1);
  margin:0 24px 0 0;
  height:700px;
  width: 180px;
  border: 4px var(--black3) Ridge;
}


.left {
  float:left;
}

.right {
  float: right;
}

.pagina {
  width: 600px;
  height:700px;
  border: 4px #8b2a21 Ridge;
}

ul {
  list-style-type: none;
  padding: 0 auto 0 auto;
}

ul li {
  text-align: center;
  width: 100px;
  height: 80px;
  margin: 8px 0;
  background-color: var(--white2);
  padding-top: 20px;
  border-radius:30px;
  letter-spacing:2px;
  border: 4px var(--black3) Ridge;
  box-shadow: 4px 4px 2px var(--black4);
}



a:link {
  color: var(--white9); 
  text-decoration:none;
}

a:visited {
  color: var(--white9); 
  text-decoration:none;
}
a:active {
  color: var(--white6); 
  text-decoration:none;
}
/*
a:hover {
  color: var(--white7);
  background-color: var(--white7);
  text-decoration:none;
}*/


ul li:hover {
background-color: var(--white4);
}

.sas:hover {
    background-color:black;
    color:black;
}

