html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.loader {
  position: fixed;
  inset: 0;
  background: #232323;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader svg {
  width: 100px;
  height: 100px;
}

.eye {
  fill: #1ab0c8;
  animation: blink 3s infinite;
}

@keyframes blink {
  0%, 100% { fill: #1ab0c8; }
  25%     { fill: #000000; }
  50%     { fill: #ff0000; }
  75%     { fill: #000000; }
}
