@font-face {
  font-family: "Minecraft Regular";
  src: url("/assets/font/minecraft-regular.eot?");
  src: url("/assets/font/minecraft-regular.eot?#iefix")
      format("embedded-opentype"),
    url("/assets/font/minecraft-regular.woff") format("woff"),
    url("/assets/font/minecraft-regular.ttf") format("truetype"),
    url("/assets/font/minecraft-regular.svg#Minecraft") format("svg");
  font-weight: normal;
  font-style: normal;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
  background-color: rgba(255, 255, 255);
}

#loader-text {
  margin-top: 0.5rem;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-family: "Minecraft Regular", sans-serif;
}

.loader-gif {
  width: 80px;
  height: auto;
  image-rendering: pixelated; /* útil se for pixel art */
  transition: opacity 0.4s ease;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
