/* styles.css */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.background-image {
    background-image: url('Bg-web-construccion.jpg'); /* Asegúrate de poner la ruta correcta a tu imagen */
    background-size: cover; /* La imagen se escala para cubrir completamente el contenedor */
    background-position: center; /* La imagen se centra en el contenedor */
    background-repeat: no-repeat; /* La imagen no se repite */
    width: 100%;
    height: 100%;
    position: absolute;
}
