.loading-logo-parent-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
}

.loading-logo-container {
    width: 150px;
    height: 150px;
    animation: rotate3d 2s infinite linear;
    transform-style: preserve-3d;
}

.loading-logo {
    width: 100%;
    height: 100%;
    background: url('favicon.png') no-repeat center;
    background-size: contain;
}

@keyframes rotate3d {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}
