/* #card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
} */
.tarjeta {
    margin-top: 2rem;
}

body{
    /* background-image: url("../img/wallpaper.png"); */
    background-image: url("../img/react.jpg");
}

#card:hover {
    background-color: #685F5D;
    color: white;
}

#card img {
    margin-top: 1rem;
    text-align: center;
    width: 50%;
    height: 50%;
    box-shadow: 2px 6px 4px 0 black;    
    perspective: 1000px;
    transition: 1s;
}
#card img:hover {
   cursor: pointer;
   width: 100%;
   height: 100%;
   transition: 1s;   
}