@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Archivo", sans-serif;
}

body {
  background-color: #403e39;
}

@keyframes circlingGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
}

#navbar {
  transition: background-color 0.3s ease;
  background-color: #203d3444;
  font-family: 'Lemon Milk'!important;
}

@font-face {
  font-family: 'Lemon Milk';
  src: url('../asset/fonts/LemonMilk.otf') format('opentype');
  font-weight: 900; /* optional: tells CSS this is a bold weight */
  font-style: normal;
}


.glow {
  animation: circlingGlow 2s ease-in-out infinite;
}

.shadow-white {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Styles for the loading animation */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #006869;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

/* Hide the loading animation when the content is ready */
.content {
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}