body{
    background: #136a8a;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #267871, #136a8a);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #267871, #136a8a); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

footer{
    background : #EEEEEE;
    border-radius: 5px;
    padding : 2px;
    display : flex;
}

.footer-p{
    color : black;
    font-weight: bolder;
    font-size: 20px;
    width : 50%;
    font-style: oblique;
    text-align: center
}
#ContenedorPrincipal{
    padding-top: 1px;
    background: #ffffff;
    border-radius: 5px;
}
h1{
    color: brown;
    font-family: fantasy;
}
.ContenedorLista{
    display: flex;
    width: 100%;
    height: 100vh;
    padding-left: 2% ;
    padding-bottom: 2%;
    box-sizing: border-box;
}
.Caja{
    height: 90%;
    background:#EEEEEE;
    border-radius: 7px;
    flex: 1;
    overflow: hidden;
    margin: 8px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.20);
    line-height: 0;
    transition:all 300ms;

}
.Caja img{
    width: 100%;
    height:80%;
    object-fit: cover;
    transition:all 300ms;
}
.Caja a{
    font-size: 25px;
    text-decoration: none;
    font-family: sans-serif;
    display:block;
    text-align: center;
    height:3vh;
    line-height: 2.6;
    color: black;
}
.Caja:hover{
    flex: 10%;
}
.Caja:hover img{
    width: 100%;
    height: 80%;
}
img{
    width: 300px;
    height:200px;

}
