
/*section {
    float: left;
    margin: 0 3%;
    width: 100%;
    text-align: justify;
}*/
/*aside {
    float: left;
    margin: 0 1%;
    width: 15%;
  }*/
  html {
    height: 100%; /*Esto es para que el html ocupe toda la pantalla y así la imagen de 
                    fondo no se repita horizontalmente */
  }
    footer {
      clear: both;
      position: fixed;
      bottom: 0;
      width: 100%;
      background: rgb(1, 62, 87);
      margin-top: 5%;
  }
  body {
      /*background-color: linear-gradient(green, white);*/
      background-image: url("../imgs/IA_fondo.png");
      background-attachment: scroll, fixed;
      background-color:  linear-gradient(to left,rgb(213, 243, 255), white);
      /*padding-top: 8%;*/
      margin: auto;
      text-align: justify;
      color: black;
      background-size: 100% 100%;
      padding-bottom: 5%;
  }
  
  .navbar-default{
    background-color: rgb(1, 62, 87);
  }
  
  .navbar ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      overflow: hidden;
      background-color: inherit; /*rgb(1, 62, 87);*/
      width: 100%;
    }
  
  .navbar li {
      float: left;
    }
  
  .navbar li a {
      display: block;
      color: white;
      text-align: center;
      padding: 22px 20px;
      text-decoration: none;
    }
  
  .navbar li a:hover {
      background-color: #111;
      border-radius: 25%;
    }
  .navbar .active {
      background-color: #04e8fb;
      border-radius: 25%;
    }
  .navbar .title {
    display: block;
    color: white;
    text-align: center;
    padding: 22px 20px;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: relative;
    left: 0;
    /*background-color: #111;*/
    /*min-width: 160px;*/
    /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/ /*Esto es para darle sombra a los desplegables*/
    /*box-sizing: content-box;*/
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: white;
    /*padding: 12px 16px;*/
    text-decoration: none;
    display: inherit;
    white-space: nowrap;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #f1f1f1}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: inherit;
  }