.unyco .activity-card {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition: transform .2s ease;

    margin: 10px;
}

.unyco .activity-card:hover {
    transform: scale(1.02);
}