.card {
    display: grid;
    right: 10px;
    height: 220px;
    margin: 20px;
    width: 150px;
    border-radius: 8px;
    background: var(--i);
    background-size: cover;
    background-position: center;
    box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transition: 0.3s ease;
}
.cards {
    display: flex;
    flex-wrap: wrap;       
    justify-content: center; 
    gap: 10px;
    padding: 20px;
}

.card:hover,
.card:hover .info {
    opacity: 1;
    transform: scale(1.1);
}

.info {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.685);
    opacity: 0;
    transition: .5s;
}

.info h3{
    width: 80%;
    font-size: 10px;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    padding: 5px;
}

.content-links-botons {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}

/* Botón */
.c1 {
    font-family: sans-serif;
    background: #fff;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding: 5px;
    height: 25px;
    font-size: 10px;
    font-weight: 100;
    margin: 5px;
    width: 100px;
    transform: skew(0deg);
}

.c1 span {
    display: inline-block;
    transform: skew(21deg);
}

.c1 {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.c1:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: 0;
    background: #2a2a2c;
    opacity: 0;
    z-index: -1;
    transition: all ease-in-out .5s;
}

.c1hover,
.c1:hover {
    color: white;
    transition: ease-in-out 0.5s;
}

.c1:hover:before {
    left: 0;
    right: 0;
    opacity: 1;
}

.c1 a:focus {
    outline: 2px solid #ba2f2f;
    outline-offset: 2px;
}