*, *::before, *::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    /* font-family: Arial, sans-serif; */
    font-family: "Poppins", Arial;
    color: black;
    background-color: white;
    /* max-width: 100%;
    height: 100vh; */
}


/* FONT CUSTOM */
.black{
    color: rgb(0, 0, 0);
}
.grey {
    color: rgb(121, 121, 121)
}
.lightgrey {
    color: rgb(211, 211, 211);
}
.white{
    color: rgb(255, 255, 255);
}
.bg-black{
    background-color: rgb(0, 0, 0);
}
.bg-white{
    background-color: rgb(255, 255, 255);
}
.bold {
    font-weight: 600;
}
.normal {
    font-weight: 400;
}
.light{
    font-weight: 300;
}
.extralight{
    font-weight: 200;
}
.alignLeft{
    text-align: left;
}
.alignRight{
    text-align: right;
}
 
/* PRELOADER */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex; /* Added for center alignment */
    justify-content: center; /* Center content */
    align-items: center; /* Center content */
    z-index: 100; /* Ensure overlay is on top */
    pointer-events: none; /* Disable pointer events for auto-dismissal */
    overflow: hidden;
}
#preloaderBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
}
#preloaderText {
    
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
#preloaderText h3 {
    font-size: 1rem;
}