@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');
body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background-color: #1E201E;
  color: #ECDFCC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

h1 {
  font-size: 4em;
  margin: 0.5em 0;
  font-weight: 700;
}

p {
  font-size: 1.5em;
  color: #C7C2BC;
}

.loading-bar {
  position: relative;
  width: 200px;
  height: 10px;
  background: #3C3D37;
  border-radius: 5px;
  overflow: hidden;
  margin: 1.5em 0;
}

.loading-bar::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 10px;
  background: #ECDFCC;
  border-radius: 5px;
  animation: loading 2s infinite;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(300%);
  }
}