La imagen del banner no permanece centrada en diferentes tamaños de pantalla

Hola :wave:

Mi imagen de ‘bienvenida’ no se mantiene centrada al ajustar el tamaño de la pantalla o al mover la ventana a una pantalla de diferente tamaño.

¿Alguna idea sobre cómo puedo solucionar esto?

Muchas gracias


Me tomó un minuto encontrar tu sitio web, pero… Este es el CSS para esa imagen de fondo descentrada

.search-banner {
    background-image: var(--custom-bg);
    background-size: cover;
    background-repeat: no-repeat;
}


Aquí está el CSS corregido

.search-banner {
    background-position: center;
    background-image: var(--custom-bg);
    background-size: cover;
    background-repeat: no-repeat;
}

¡Increíble, funcionó! Gracias por tu ayuda.