
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #040404; /* Background color for the preloader */
    text-align: center;
    z-index: 1000; /* Ensure the preloader is above other content */
}

.chakra {
    position: relative;
    width: 200px; /* Set width for chakra */
    height: 200px; /* Set height for chakra */
    display: flex;
    justify-content: center;
    align-items: center;
}

.chakra-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.chakra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 10px solid gold; /* Adjust border color as needed */
    border-top-color: transparent; /* Make the top border transparent for the spinning effect */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-sizing: border-box; /* Ensure the border-box model is used */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.preloader img {
    width: 150px; /* Set the size of the GIF */
    height: auto;
    z-index: 1;
}

.content {
    display: none; /* Hide the main content initially */
    text-align: center;
}
