body {
    margin: 0;
    padding: 0;
    background-color: #DBDCDE !important;
}

#splash-screen {
    display: flex;
    position: absolute;
    z-index: 1000;
    width: 100%;
    top: 0;
    flex: 1;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#splash-screen img {
    margin-left: calc(100vw - 100%);
    margin-bottom: 30px;
    max-width: 250px;
}

#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    animation: rotate 2s linear infinite;
    margin-left: calc(100vw - 100%);
    stroke-width: 1000;
}

.spinner .path {
    stroke: #1c0c3f;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}
