body {
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

body::before {
    content: "";
    background-image: url('https://images.unsplash.com/photo-1511376979163-f804dff7ad7b?q=80&w=2940&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Capa oscura para mejorar la legibilidad */
    z-index: -1;
}

.container {
    text-align: center;
    max-width: 90%;
    padding: 20px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.message {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 40px;
}

.footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.9em;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Media Queries para diferentes tamaños de pantalla */
@media (min-width: 768px) {
    .logo {
        max-width: 400px;
    }
    .message {
        font-size: 2em;
    }
}