@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: transparent;
}

@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: rgba(224, 219, 255, 0.5) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  font-family: 'Lemon Milk'!important;
}

@font-face {
  font-family: 'Lemon Milk';
  src: url('../asset/fonts/LemonMilk.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins Bold';
  src: url('../asset/fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins Medium';
  src: url('../asset/fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  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);
  }
}


