html, body {
  margin: 0;
  padding: 0;
  background-color: white;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -moz-tap-highlight-color: rgba(0,0,0,0);
  -o-tap-highlight-color: rgba(0,0,0,0);
  outline-offset: 10px;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}

body {
    overflow-x: hidden !important;
}

/* ::-webkit-scrollbar {
    display: none;
} */

img {
    width: 100%;
    height: auto;
}

 ::-moz-selection { /* Code for Firefox */
 color: #000000;
  background: #dcdbdc  ;
}

::selection {
  color: #000000;
  background: #dcdbdc  ;
}

button:focus {outline:0;}
