@import url("https://fonts.googleapis.com/css2?family=Michroma&display=swap");

.main_container {
    height: 100%;
    width: 100%;
    position: relative;
}

.loading-page {
    font-family: "Michroma", sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #4e57d4, #6970dd, #4e57d4);

    height: 100vh;
    max-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    color: #191654;
    z-index: 100000;
}

#svg {
    height: 150px;
    width: 150px;
    stroke: white;
    fill-opacity: 0;
    stroke-width: 3px;
    stroke-dasharray: 4500;
    animation: draw 8s ease;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 4500;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.name-container {
    font-family: "Michroma", sans-serif;
    height: 30px;
    overflow: hidden;
}

.logo-name {
    color: #fff;
    font-size: 20px;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-left: 20px;
    font-weight: 700;
}
