/* Asegúrate de que el fondo ocupe toda la pantalla */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Contenedor para centrar el logo */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Estilo del logo */
.logo {
    max-width: 85%;
    max-height: 85%;
    animation: pulse 2s infinite;
}

/* Animación de efecto pulsante */
@keyframes pulse {
    0% {
        transform: scale(1);
		opacity: 1;
    }
    25% {
        transform: scale(1.1);
		opacity: 1;
    }
    60% {
        transform: scale(0.9);
		opacity: 0.3;
    }
    80% {
        transform: scale(1.15);
		opacity: 1;
    }
    100% {
        transform: scale(1);
		opacity: 1;
    }
}