.card {
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in-out;
    border-radius: 10px;
}

.card img {
    aspect-ratio: 2/3;
    object-fit: cover;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #000000;
}

.desc {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    color: var(--secondary-clr);
    padding: 1rem 1rem 0;
    transition: all .5s ease-in-out;
    transform: translateY(200%);
    text-shadow: 0 0 5px black;
}

.desc h3 {
    font-weight: 800;
    font-size: 125%;
}

.card:hover .desc {
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    transform: translateY(0);
}