body {
  background-color: #EBEFF4;
}

#splash-screen {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.loader {
  margin: 0 auto;
  margin-top: 25px;
  border-radius: 5px;
  width: 120px;
  height: 10px;
  background:
    linear-gradient(90deg, #0000, #2064f6) left -50px top 0/50px 10px no-repeat #d6e3f9;
    animation: l2 1s infinite linear;
}
@keyframes l2 {
  100% {background-position: right -50px top 0}
}
