@import url('https://i02.appmifile.com/i18n/fonts/MiSans/vf/index.css');
@import url('https://i02.appmifile.com/i18n/fonts/MiSans/woff2/index.css');
*{
  margin: 0;
  padding: 0;
}
html {
  box-sizing: border-box;
  font-family: 'Mi Sans';

}

.loading-screen{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 180vh;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo{
  width: 300px;
  height: 240px;
}

.loading-bar{
  width: 400px;
  height: 15px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.loading-bar::before{
  content: "";
  width: 150px;
  height: 5px;
  background: #0C7BFF;
  position: absolute;
  left: -100px;
  animation: bluebar 1s infinite ease;
}

@keyframes bluebar {
  50%{
    left: 350px;
  }
}
