﻿body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

.preloader {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    position: fixed; /* Fixed to cover the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    overflow: hidden; /* Prevents scrolling while preloader is visible */
}

    .preloader .logo img {
        width: 200px;
        height: auto;
        margin: 20px 0;
    }

    .preloader .text {
        font-size: 18px;
        color: grey;
        margin-bottom: 20px;
        animation: fadeInOut 1.5s infinite;
    }

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.preloader p {
    color: black;
    font-size: 16px;
    line-height: 1.5;
}
