:root {
    --preferred-font: "Calibre", "Arial", "Roboto", "Helvetica", sans-serif;

    font-family: var(--preferred-font);

    /* Default text */
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.02em;
    color: var(--klub-dark-grey);
}

body {
    margin: 0;
}

#app {
    display: flex;
    flex-direction: column;
}

.index-loading-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.index-spinner {
    animation: rotate 2s linear infinite;
    width: 50px;
    height: 50px;
}

.index-spinner_circle {
    stroke: #93bfec;
    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;
    }
}
