/* testing value */
body {background-color: coral;}

.grid-stack {
    /* set content as tall as the browser */
    min-height: 100vh;
    width: 100%;

    display: grid;

    /* Center elements */
    place-items: center;
    isolation: isolate;
}

.grid-stack > * {

    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.object {

    width: 50px;
    height: 50px;
    background-color: #fff;
    animation: scaleUp 2s ease,
    fadeOut 2s ease;
    
}


@keyframes scaleUp {
    0% { scale: 1; }
    10% { scale: .85; }
    100% { scale: 20; }
}

