.loader-container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #004466;
            z-index: 9999;
        }
        .loader {
            width: fit-content;
            font-weight: bold;
            font-family: sans-serif;
            font-size: 30px;
            padding-bottom: 8px;
            background: linear-gradient(currentColor 0 0) 0 100%/0% 3px no-repeat;
            animation: l2 2s linear infinite;
            color: white;
        }
        .loader:before {
            content: "Pangaea Add Capital";
        }
        @keyframes l2 {
            to { background-size: 100% 3px; }
        }