@charset "UTF-8";
@import url('https://cdn.mcalec.dev/web/css/font/lato.min.css');

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(000, 000, 000, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.loader-container.visible {
  opacity: 1;
  visibility: visible;
}

.loader-gif {
  size: 100px;
  margin-bottom: 20px;
}

.loader-text {
  font-family: LatoRegular;
  color: #ddd;
  margin-top: 10px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}