

html, body{
height:100%;
margin:0;
}

body{
min-height:100%;
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
background:#0f4c75!important;/*#16a34a;*/
color:#fff!important;
font-family:'Poppins',sans-serif, Arial;
color:white;
text-align:center;
}

/* LOGO */
.logo img{
width:190px;
max-width:80%;
height:auto;
animation:logo 1.2s ease;
}

/* TITLE */
.title{
font-size:34px;
font-weight:600;
margin-top:10px;
}

/* LOADING BAR */
.loader{
width:200px;
height:6px;
background:rgba(255,255,255,0.3);
border-radius:20px;
margin-top:30px;
overflow:hidden;
}

.bar{
height:100%;
width:0%;
background:white;
animation:load 4s linear forwards;
will-change:width;
}

/* TEXT */
.loading{
margin-top:10px;
font-size:14px;
opacity:0.9;
}

/* ANIMATION */
@keyframes load{
0%{width:0%;}
100%{width:100%;}
}

@keyframes logo{
0%{transform:scale(0.7);opacity:0;}
100%{transform:scale(1);opacity:1;}
}