/*Eliminamos los margenes y paddings que agrega el navegador por defecto*/
* {
  padding: 0;
  margin: 0;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

/*Agregamos margenes inferiores a los parrafos*/
p {
  margin-bottom: 10px;
}
header {
  background-color: rgba(0,0,0,0.9);
  width: 100%;
  position: fixed;
  z-index: 100;
  padding-top: 10px;
  padding-right: 90px;
  padding-left: 90px;
}
.derecha {
  float: right; /* Desplazamos el nav hacia la derecha */
}
.izquierda {
  float: left; /* Desplazamos el nav hacia la izquierda */
}

.sombra {
 text-shadow: 0 0 20px black, 2px -2px 3px grey, -4px -4px 5px lightgrey;
 color: black;
}

.sombraFuego {
 text-shadow: 0 0 20px #fefcc9, 2px -2px 3px #feec85, -4px -4px 5px #ffae34, 5px -10px 6px #ec760c, -5px -12px 8px #cd4606, 0 -15px 20px #973716, 2px -15px 20px #451b0e;
 color: #666;
}

nav ul {
  list-style: none;
  overflow: hidden; /* Limpiamos errores de float */
}

nav ul li {
  float: left;
  font-size: 17px;
}

nav ul li a {
  display: block; /* Convertimos los elementos a en elementos bloque para manipular el padding */
  padding-left: 20px;
  color: #ccc;
  text-decoration: none;
  /*font-weight:bold;*/
}

.indice {
    color: grey;
}

nav ul li a:hover {
   /*background: #3ead47;*/
   text-decoration:none;
   color: #fff;
} 

.topnav {
  overflow: hidden;
}

.topnav a {
  display: block;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
    header {
      padding-top: 10px;
      padding-right: 10px;
      padding-left: 10px;
    }
    nav li {
        display: none;
    }
  .topnav.responsive a {
    float: none; 
    display: block;
    text-align: left;
  }
}

.transparente {
    background-color:rgba(255,255,255,0.2);
}

.contenido {
  padding-top: 20px;
}
.wrapper {
  /*width: 80%;*/
  margin: auto;
  overflow:hidden;
}



