/*Eliminamos los margenes y paddings que agrega el navegador por defecto*/


html {
  position: relative;
  min-height: 100%;
}
 
body {
  /* Margin bottom by footer height */
  padding: 0;
  margin: 0;
  margin-bottom: 60px;
}


#inde{
    background-image: url("../imagenes/persona-laptop.jpg");
    background-repeat: no-repeat !important;
    background-size: 100% 100%;
    background-attachment: fixed;
}

header {
    background: rgba(0, 0, 0, 0.521);
    width: 100%;
    position: fixed;
    z-index: 100;
  }

  /*Agregamos margenes inferiores a los parrafos*/
 

  nav {
    float: left; /* Desplazamos el nav hacia la izquierda */
  }
  
  nav ul {
    list-style: none;
    overflow: hidden; /* Limpiamos errores de float */
  }
  
  nav ul li {
    float: left;
    font-family: Arial, sans-serif;
    font-size: 16px;
  }
  
  nav ul li a {
    display: block; /* Convertimos los elementos a en elementos bloque para manipular el padding */
    padding: 20px;
    color: #fff;
    text-decoration: none;
  }
  
  /*nav ul li:hover {
    background: #3e47ad7a;
  }*/

  nav ul li:hover {
      border-bottom: 3px solid #111b86fb ;
    /*background: #3e47ad7a;*/
  }

  .contenido {
    padding-top: 80px;
  }

  .wrapper {
    width: 80%;
    margin: auto;
    overflow:hidden;
  }





  #contenedor_princ{
    position: relative;
    height: 100%;
    width: 50%;
    float: right;
    bottom: -200px;
  }

#tarjeta{
  background-color: rgba(0, 0, 0, 0.327) !important;
  border-radius: 10px;
  padding-top: 2%;
  padding-bottom: 4%;
  padding-left: 4%;
  font-size: 20px;
}


p {
  padding-top: 20px;
  color:rgba(255, 255, 255, 0.841);
}

.btn{
  margin-top: 2%;
}








   
  .footer {
    position: fixed;
    bottom: 0;
    width: 100%;

    height: 11%;
    background-color: #000000f7; 
  }

.pie{
  margin-top: 5%;
}

