.animated-loading {
    width: 100%;
    height: 100%;
}

#logo {
    width: 192px;
    height: 192px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-position: center;
    animation: rotation 2s infinite ease-in-out;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}
