.content{
    font-size: 16px;
    margin: 5px;
    padding-top: 25px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around ;
    min-height: 100vh;
    flex-wrap: wrap;
}

img{
    max-width: 100%;
    display: block;
    
}

.ui-card{
    width: 350px;
    height: 500px;
    background: radial-gradient(#100 40%, #000 90%);
    overflow: hidden;
    position: relative;
    border-radius: 3%;
    flex-wrap: wrap;
    
}

.ui-card img{
    transform: scale(1.3);
    transition: all 0.3s ease-out;
    
}

.ui-card:hover img{
     transform: scale(1.1) translateY(-20px);
     opacity: 0.3;

}

.description{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
    padding-left: 5px;
    text-align: center;
    color: #100;
    font-size: 18px;

}

.description h3{
    font-weight: 700;
    font-size: 32px;
    margin: 0 0 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease-out;
}



.description a{
    color: aliceblue;
    background-color: black;
    display: inline-block;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease-out 0.2s;
}

.description a:hover{
    background-color: rgb(67, 5, 5);
}

.ui-card:hover .description h3{
    opacity: 1;
    transform: translateY(0);
}

.ui-card:hover .description a{
    opacity: 1;
    transform: translateY(0);
}


/*==================================RESPONSIVE LAYOUTS===============================================*/ 

@media screen and (max-width: 768px) {
    .ui-card{
        margin: 0 10px;
    }
}

@media screen and (max-width: 1190px) {
    .ui-card{
        margin: 0 10px;
    }
}




