/* 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." */
   
      .contenido{
        margin:10px;
        padding: 5px;
        background-image: url(imagenes/fondo.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        flex-direction: column;
        align-items:center;
        display:grid;
        grid-template-columns:repeat(3, 1fr);
        margin-bottom:5px;
      }
      nav {
        display: flex;
        margin:10px;
      }
      nav a{
        text-decoration: none;
        color:#780212;
        text-align: center;
      }
      .nav{
        margin:0 auto;
        justify-content: justify;
        width: 643px;
        height: 123px;
        background-image: url(imagenes/fondo2.jpg);
        display: flex;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 10px;
        
      }
      a:hover{
        background-color: #FACDFA;
      }
      .separar{
         margin:10px auto;
        justify-content: justify;
        width: 643px;
        height: 30px;
        background-image: url(imagenes/baner.jpg);
        display: flex;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 10px;
        
        
        
      }
      .links {
        background-color: #E8F760;
        border: 2px solid #8BD408;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.2);
        text-align:justify;
        margin: 0 10px;
        height: auto;
        width:400px;
        float: left;
      }
      .in {
        background-color: #FACDFA;
        border: 2px solid #9BD408;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.2);
        text-align:justify;
        margin: 0 10px;
        height: 100px;
        width:240px;
        float: right;
      }
      h1{
        text-align: center;
        font-family: "Courier New", monospace;
        font-size: 30px;
        margin-bottom:20px;
      }
      body {
        background-image: url(imagenes/descarga.jpg);
        background-attachment: fixed;
         background-size: cover;
         background-repeat: no-repeat;
         background-position: center; 
         color: white;
        max-width: 1000px;
        margin: 0 auto;
        text-align: justify;
      }
      img{
        display: block;
        width: 90px;
        justify-content: center;
      }
