﻿.loading-frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #005e9a;
    z-index: 100000;
}

.loading-image {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    animation: zoomIn 1s ease-in-out infinite alternate;
}

.loading-frame-final {
    animation: fadeOut 1s ease-in-out;
    opacity: 0;
}

@keyframes zoomIn{
    from {
        transform: translateY(-50%) translateX(-50%) scale(1);
    }

    to {
        transform: translateY(-50%) translateX(-50%) scale(1.2);
    }
}

@keyframes fadeOut{
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}