html,
body {
    height: 100%;
    margin: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#splash-screen {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#splash-screen img {
    max-width: 80px;
    /* Adjust size as necessary */
    height: auto;
}

.shimmer-div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}