.app {
    width: 250px;
    height: 200px;
    background-color: transparent;
    border-radius: 8px;
    margin: 10px;
    cursor: pointer;
    box-shadow: 0px 0px 1.25rem 5px rgba(0, 0, 0, 0.493);
    transition: all 0.2s ease-in-out;
}

.app:hover {
    transform: scale(105%);
}

.app:active {
    transform: scale(1000%);
}