body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-image: url('reconstruccion-desktop.png'); /* Asume que tienes una imagen para escritorio */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Un fondo semitransparente para hacer el texto más legible */
    color: white;
    text-align: center;
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

p {
    font-size: 1.5em;
}

/* Estilos responsivos */
@media (max-width: 1024px) { 
    body {
        background-image: url('reconstruccion-tablet.png'); /* Asume que tienes una imagen para tablets */
    }
}

@media (max-width: 768px) { 
    body {
        background-image: url('reconstruccion-mobile.png'); /* Asume que tienes una imagen para móviles */
    }
    h1 {
        font-size: 2em;
    }
    p {
        font-size: 1.2em;
    }
    .container {
        padding: 10px;
    }
}
