body {
    inset: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: fixed;
    background-color: white;
}

#loading {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

#loading img {
    width: 100px;
    animation: loading 1.0s infinite;
}

@keyframes loading {
    0% {
        transform: rotateY(0deg) scale(0.9);
    }

    50% {
        transform: rotateY(360deg) scale(1.1);
    }

    100% {
        transform: rotateY(720deg) scale(0.9);
    }
}