.loader-logo {
    stroke: rgb(31, 106, 220);
    fill-opacity: 0;
    stroke-width: 1px;
    stroke-dasharray: 4500;
    stroke-dashoffset: 4500;
    animation: draw 30s ease forwards;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 4500;
        fill-opacity: 0;
    }
    100% {
        stroke-dashoffset: 0;
        fill-opacity: 1;
        stroke: transparent;
    }
}
