body, html {
    margin:0;
    padding:0;
}

p, h1 {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.logo_container {
    padding: 50px;
}

.endpay_logo {
    width: 450px;
    display: table;
    margin: 0 auto;
    padding: 0 0 50px;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
}


h1 {
    font-size: 32px;
}

.g {
    color: #659427;
}

/* Loading Bar */

.loading-bar-container {
    width: 225px;
    height: 18px;
    
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
}

  .loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(
        to right,
        #b2c993 0%,
        #7ca447 50%,
        #659427 100%
    );
    border-radius: 25px 0 0 25px;
    transition: width 0.1s linear;
  }

  .loading-text {
    font-size: 22px;
    color: #444;
  }

@media (max-width: 600px) {
    .endpay_logo {
        width: 250px;
    }

    .loading-bar-container {
        width: 125px;
        height: 12px;
    }

    h1 {
        font-size: 22px;
    }
  }