.TgwLoader {
    height: 50%;
    width: 50%;
    margin-top: 100px;
    object-fit: contain;
    animation-name: stretch;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-delay: 0;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    animation-play-state: running;
}

@keyframes stretch {
    0% {
        transform: scale(.3);
        border-radius: 100%;
    }

    50% {}

    100% {
        transform: scale(1.5);
    }
}
