body {
    margin: 0;
    padding: 0;
    background-color: #C1FF72;
    /* Updated background color */
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #C1FF72;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOut 2s ease-out 3s forwards;
    /* Adjust animation duration and delay as needed */
}

.logo-container {
    max-width: 400px;
    /* Adjust the max width for your logo */
    animation: fadeIn 1.5s ease-out forwards;
    /* Adjust animation duration as needed */
}

.logo-container img {
    width: 100%;
    height: auto;
}

.content {
    display: none;
    /* Add styles for the rest of your app content */
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 
@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
} */

body.loaded .content {
    display: block;
}