/* Fondo de imagen completa */
body {
    margin: 0;
    padding: 0;
    background: url('https://salvadorgonzalez.cl/images/patiofutbol.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: sans-serif;
}

/* Contenedor centrado */
.overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* opcional, oscurece el fondo */
}

/* Logo centrado */
.logo {
    max-width: 300px;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
}

/* Texto */
.mensaje {
    color: #fff;
    font-size: 24px;
    text-align: center;
}
