*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover, a:focus {
  text-decoration: underline;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  padding: 0;
  text-align: left;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: 1px solid #ccc;
  padding: 0.5em;
  margin: 0;
}

audio,
video {
  max-width: 100%;
  height: auto;
}

html {
  -webkit-overflow-scrolling: touch;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input,
  select,
  button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
body {
  background-color: silver;
}