@font-face {
  font-family: 'Ubuntu';
  src: url(./fonts/ubuntu/Ubuntu-Regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}
.loader-container {
  background-color: #fff;
  width:  100vw;
  height:  100vh;
  z-index: 999;
  position:  fixed;
  top: 0;
}
.loader-center {
  width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader {
  width: fit-content;
  clip-path: inset(0 17px 0 0);
  animation: l4 2s steps(4) infinite;
  height: 30px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.loader:before {
  content:"Carregando...";
  font-size: 24px;
  font-family: "Ubuntu", sans-serif;
  color: #444;
}
@keyframes l4 {to{clip-path: inset(0 -4px 0 0)}}
