@font-face {
  font-family: 'Pixel';
  src: url('../fonts/pixel.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00bef3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 1s ease;
}

p {
  margin-top: 20px;
  color: #fff;
  font-size: 40px;
  font-family: 'Pixel', sans-serif;
  text-align: center;
  cursor: pointer;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fade-out {
  opacity: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.blink {
  animation: blink 0.8s infinite;
}