#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #212534;
    z-index: 9999;
    gap: 0.5rem;
}

.preloader-logo {
    width: auto;
    height: 60px;
    margin-bottom: 16px;
    animation: fadeIn 0.5s ease-in-out;
}

.loading-text {
    font-size: 40px;
    color: #aeaeae;
    font-family: 'Arial';
    letter-spacing: 1px;
    animation: fadeIn 1.7s ease-in-out infinite alternate;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
