/* Estilo general */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

/* Contenedor principal */
.container {
    text-align: center;
}

/* Logo */
.logo {
    max-width: 250px;
    /* ajusta el tamaño del logo */
    margin-bottom: 50px;
    /* separación con el texto */
}

/* Mensaje */
.mensaje {
    font-size: 1.5em;
    color: #333;
    font-weight: bold;
}