* {
    margin: 0px;
    padding: 0px;
    font-family: 'oswald', sans-serif;
}
/* Este es el contenedor */
.pequenas {
    border: 2px solid rgb(248, 154, 82);
    opacity: 0.8;
    width: 100%;
    height: auto;
    display: flex;
    /* justify-content: center; */
    justify-content: space-around;
    /* space-around ++++++ separa  y deja espacio entre los box*/
    align-items: center;
    padding: 20px 0px;
    flex-wrap: wrap;
    /* wrap permite que bajen las cajas para responsive */
    margin: 10px;
}
.box {
    border-radius: 2px;
    /* border: 2px solid black; */
    width: 150px;
    height: 250px;
    /* background: linear-gradient(black, yellow); */
    /* background: linear-gradient(to top, black, yellow); */
    /* background: linear-gradient(to right, black, yellow); */
    /* background: linear-gradient(to left, black, yellow); */
    /* background: linear-gradient(to top right, black, yellow); */
    /* background: linear-gradient(to top left, black, yellow); */
    background: linear-gradient(to top left,#f0cf93,rgb(109, 84, 12));
    overflow: hidden;
    margin-bottom: 20px;
}
.icon_box {
    border: 1px solid rgb(236, 154, 60);
    width: auto;
    height: auto;
    /* margin: 20px auto 0px; */
    margin: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5%;
    color: white;
    /* background: linear-gradient(#1873c7,#11aeef); */
}
.icon_box:hover {
    cursor: pointer;
}
.icon_box:hover i {
    /* transform: rotate(10deg); */
}
.icon_box i {
    font-size: 100px;
    transition: transform 0.5s;
}
.text_box {
    /* border: 2px solid black; */
    width: 100%;
    height: auto;
    box-sizing: border-box;
    color: rgb(5, 5, 5);
    text-align: center;
    font-size: 14px;
    padding: 15px;
}
.tex_box h2 {
    text-transform: uppercase;
}
.box a#pata {
    width: 140px;
    height: 40px;
    border: 1px solid rgb(236, 154, 60);
    background: sandybrown;
    color: white;
    font-size: 14px;
    display: block;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    /* text-transform: uppercase; */
    margin: 0px auto;
    /* border-radius: 10px 10px 0px 0px; */
    transform: translateY(60px);
    transition: 0.5s;
    opacity: 0.6;
    
    
}
.box:hover a#pata {
    transform: translateY(0px);
}