body {
  font-family: monospace;
  background: #fff0f5;
  text-align: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

/* PRELOADER */
#preloader {
  position: fixed;
  background-color: #fff0f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

#preloader.hidden {
  display: none;
}

.loader-text {
  color: #ff66cc;
  font-size: 1.8rem;
  margin-top: 10px;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}