body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #000000;
  font-family: "Lexend", sans-serif;
  opacity: 0;
  animation: fadeIn 1s forwards;
  cursor: url('ee919e66-15c0-461c-9cfe-bd83818135c8.cur'), auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#loading-screen {
  text-align: center;
}

.loading-text {
  font-size: 28px;
  color: rgba(255, 0, 0, 0.9);
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
  animation: breathing 1.5s infinite;
}

@keyframes breathing {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
    opacity: 0.8;
  }
  50% {
    text-shadow: 0 0 40px rgba(255, 0, 0, 1);
    opacity: 1;
  }
}

.xtra {
  font-size: 18px;
  font-family: "Lexend", sans-serif;
  text-align: center;
  color: rgba(255, 0, 0, 0.9);
  margin-bottom: 10px;
}

.xtra2 {
  font-size: 12px;
  font-family: "Courier New", Courier, monospace;
  text-align: center;
  color: rgba(255, 0, 0, 0.9);
  margin-bottom: 30px;
  animation: breathing 1.5s infinite;
}
