body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0f0f0f;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.loader {
  text-align: center;
}

.bar {
  width: 220px;
  height: 4px;
  background: #333333;
  overflow: hidden;
  margin-top: 15px;
}

.progress {
  height: 100%;
  width: 0%;
  background: #fe6081;
  animation: load 1.5s linear forwards;
}

@keyframes load {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}
