CSS FIT NO X SCROLLBAR THE HTML IN SCREEN EVENTHOUGH IMAGE OVERSIZE
/* Apply box-sizing to all elements */
*, *::before, *::after
{
box-sizing: border-box;
}
/* Prevent horizontal scrolling */
html {
margin: 0;
padding: 0;
overflow-x: hidden;
}