 #loading {
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
} 

.led-container {
  /* position: relative; */
  width: 300px;
  height: 300px;
  transform: rotate(270deg);
}

.led-ring {
  /* position: absolute; */
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.led {
  position: absolute;
  width: 12px;
  height: 24px; /* rectangle vertical */
  border-radius: 4px;
  opacity: 0.2;
  transition: opacity 0.3s ease;
  box-shadow: 0 0 8px currentColor;
}

.led-text {
  /* position: absolute; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  color: white;
  font-size: 1.4rem;
  /* font-family: Arial, sans-serif; */
  text-align: center;
  letter-spacing: 1px;

}
