body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Altura del contenedor, puede ser ajustada */
}

.centered-image {
    max-width: 100%; /* Redimensiona la imagen manteniendo la proporción */
    height: auto;    /* Ajusta la altura automáticamente */
}
