body {
  margin: 0;
  padding: 0;
  background-color: #000;
}
/* font-family  */
.font-mono {
  font-family: "Montserrat", sans-serif;
}
.font-roboto {
  font-family: "Roboto", sans-serif;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: auto; 
  height: 40px; 
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 20px; 
}

.dot {
  width: 14px;
  height: 14px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #cf9a2c; 
  animation: bounce 1s infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s; 
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); 
  }
}