@keyframes pulse {
    0% {
        transform: scale(100%,100%);
    }
    50% {
        transform: scale(110%,110%);
    }
    100% {
        transform: scale(100%,100%);
    }
}

.app-preload {
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow-y: scroll;
}
.pulse-anim {
    animation: pulse 4s ease-in-out infinite;
}