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

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
  margin: 0;
}
ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--txt-cl);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: var(--default-txt-cl);
  transition: background-color 5000s ease-in-out 0s;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--bg-cl);
  color: var(--default-txt-cl);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 14px;
  line-height: calc(24 / 14);
  letter-spacing: 0.03em;
}
