html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splashContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px; /* Total height of the container */
    width: auto;
}

.splashIcon img {
    max-height: 60px; /* Adjust to fit within the total height */
    width: auto;
}

.progressBar {
    width: 80%; /* Adjust this to control the width of the progress bar */
    height: 4px; /* Adjust the height as needed */
    background-color: #e0e0e0; /* Light grey background for the progress bar */
    margin-top: 10px; /* Space between the image and the progress bar */
    overflow: hidden; /* Ensures the progress bar stays within its container */
    position: relative; /* Allows positioning of the progress element */
}

.progress {
    width: 50%; /* Adjust this to simulate progress */
    height: 100%;
    background-color: #0D8F44; /* The color of the progress bar */
    position: absolute; /* Ensures the progress element stays within the progressBar container */
    left: 0;
    top: 0;
    animation: progressAnimation 2s infinite; /* Animates the progress bar */
}

@keyframes progressAnimation {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
