﻿

* {
    margin: 0;
    padding: 0;
    background: #28364e;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loading-info {
    color: #ffffff;
    font-size: 6em;
    font-family: "Overpass";
}

.loading-info-below {
    margin-top: 40px;
    color: #ffffff;
    font-size: 1.5em;
    font-family: "Overpass";
}

.loading-bar {
    width: 370px;
    height: 6px;
    background: #ffffff;
    margin-top: 22px;
    position: relative;
    overflow: hidden;
}

    .loading-bar::before {
        content: "";
        width: 200px;
        height: 8px;
        background: #407de4;
        position: absolute;
        left: -34px;
        animation: pinkbar 1.5s infinite ease;
    }

@keyframes pinkbar {
    50% {
        left: 196px;
    }
}
