﻿body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.splash-container {
    text-align: center;
}

.logo {
    width: 20vw;
    height: auto;
    animation: fadeIn 2s ease-in-out;
}

.fade-out {
    opacity: 0; /* Desvanecerse completamente */
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
