/* сбрасываю станадртные стили браузеров */
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* возможно стоит убрать ol и стилизовать через ::marker */
ul,
ol,
li {
  list-style: none;
}

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

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

button {
  background-color: transparent;
}

address {
	font-style: normal;
}

table {
	border-collapse: collapse;
}
