.producto{
    width: 90%;
    height: same-as-width;
    padding: 10px 10px;
    margin: 15px;
    border-radius: 10px;
    border: 1px solid #7e7fd3;
    text-align: center;
    justify-content: center;
    box-shadow:
    inset 0 -3em 3em rgba(0, 0, 0, 0.1),
    0 0 0 2px rgb(255, 255, 255),
    0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
    overflow:hidden;
}

.producto a{
    font-weight:bold;
    font-size: 18px;
    overflow:hidden;
}

.producto img{
    z-index: -1;
}

.producto:hover img{
    transform: rotate(10deg) scale(1.1);
    transition-duration: 0.5s;
}
