:root {
  --pale-purple: #a6a2dc;
  --purple: #7473bd;
  --dark-purple: #7473bd;
  --pale-coral: #ffacac;
  --coral: #ff7979;
  --neon-purple: #9d8dff;
  --dark-neon-purple: #4a49cb;
  --navy: #2c3f6b;
}

body {
  display: flex;
  width: 100vw;
  height: 100vh;
  margin: 0;
  justify-content: center;
  align-items: center;
}

.loader {
  background: #eee;
  width: 400px;
  height: 20px;
  margin-top: 10px;
  overflow: hidden;
}

.flash {
  width: 200px;
  height: 20px;
  transform: translateX(-200px);
  background: linear-gradient(90deg, transparent, white, transparent);
}

/* EDIT BELOW THIS LINE */

.flash {
  animation-name: sweep;
  animation-duration: 1.4s;
  animation-delay: 400ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes sweep {
  from {
    transform: translateX(-200px);
  }
  to {
    transform: translateX(400px);
  }
}
