body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

#wrapper {
    position: relative;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

#mainPage {
    text-align: center;
}

#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color:white;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

#splash.active {
    display: flex;
}

#splash.fade-out {
    opacity: 0;
}

.splash-content {
    text-align: center;
}

.splash-content img {
    max-width: 30%;
    height: 30%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #1976D2;
}

/* Clase para ocultar el contenido */
.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    
    .splash-content img {
        max-width: 50%;
        height: 50%;
        animation: pulse 2s infinite;
    }

  }