@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/* Preloader Container */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Preloader Text */
.preloader span {
    font-size: 36px;
   font-family: "Bebas Neue", sans-serif;
  font-weight: 400; text-transform: uppercase;
  font-style: normal;
    color: #43442b; /* Customize your text color */
    font-weight: bold;
    animation: textAnimation 1.5s infinite; /* Animation to make text blink */
}

/* Animation for Text */
@keyframes textAnimation {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
