 #descargo,
        #comparto {
            padding: 5px;
            margin: 5px;
            cursor: pointer;


        }

        #modal {
            justify-content: center;
            align-items: center;
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgb(0, 0, 0);
            background-color: rgba(0, 0, 0, 0.8);
        }

        #contenidoModal {
            background-color: white;
            width: 800px;
            height: 560px;
            border-radius: 8px;
            position: relative;
        }

        #fotoGrande {
            background-position: center;
            background-repeat: no-repeat;
            width: 100%;
            height: 510px;
            background-size: cover;
            border-radius: 8px;
        }

        #botones a {
            color: gray;
        }

        #botones {

            display: flex;
            align-items: center;
            justify-content: center;
            align-content: center;




            width: 100%;
            text-align: center;

        }

        .botonesEnlaces {
            
            background-color: darkgrey;
            padding: 5px 20px;
            border-radius: 3px;
            margin: 10px auto;
            color: white;
            display: inline-block;
            

        }
        .botonesEnlaces:hover {
             background-color: #747474;
            text-decoration: none;
            color:white;
        }

        #contenedor {
            max-width: 820px;
            margin: 0 auto;
        }

        #cabecera {
            text-align: center;
            height: 120px;
        }

        #cerrar {

            height: 20px;
            width: 20px;
            color: white;
            font-size: 20px;
            position: absolute;
            right: -10px;
            top: -10px;
        }

        body {
/*            background-image: url(../img/fondoNubes.jpg);*/
            background-color: #FCE22F;
            background-position: center top;
            background-attachment: fixed;
            font-family: sans-serif;
            font-size: 12px;
            text-align: center;
        }

        a {
            text-decoration: none;
        }

        .filas {
            background-color: antiquewhite;
            margin: 10px auto 10px;
            border-radius: 5px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 110px;

        }

        #galeria {
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: stretch;
        }



        .minis {
            background-color: #fff;
            display: inline-block;
            border: 1px solid #b2b0b0;
            padding: 5px;
            margin: 5px 0;


        }

        .minis img {

            width: 100%;
            height: auto;
        }

        .minis:hover {
            cursor: pointer;
        }

        @media only screen and (max-width: 800px) {
            #contenidoModal {
                width: 90%;
                padding-bottom: 72%;
                height: 0;
            }


            #fotoGrande {
                background-position: center;
                background-repeat: no-repeat;
                width: 100%;
                padding-bottom: 70%;
                height: 0;
                background-size: cover;
            }

        }