/*
*******************************************
RESET
*******************************************
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

/* remove scrollbars in safari/chrome */

/* ::-webkit-scrollbar {
  width: 0;
} */

html {
  background-color: #fff;
  box-sizing: border-box;
  font-size: 62.5%;
  text-rendering: optimizeLegibility;
  overflow-y: scroll;
  min-height: 100%;
}
/* body attributes ensure 100% coverage by overlay */
body {
  position: relative;
  min-height: 100%;
}

body ul {
  list-style: square inside;
}

body a {
  outline: none;
  text-decoration: none;
}

body a img {
  border: none;
}

body img {
  vertical-align: middle;
}

body table {
  border-collapse: collapse;
}
