/* Disable horizontal scroll */

html,
body{

    overflow-x:hidden;

}

/* Smooth Scroll */

html{

    scroll-behavior:smooth;

}

/* Better Mobile Tap */

*{

    -webkit-tap-highlight-color:transparent;

}

/* Image Responsive */

img{

    max-width:100%;
    height:auto;

}

/* Native Font */

body{

    font-family:-apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Roboto,
                sans-serif;

}

/* App Feel */

body{

    background:#f5f5f5;

}