
/*Element styles*/

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  font: var(--f-16-150-inter-regular);
  margin: 0;
  padding: 0;
}

a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img,
video {
  border: none;
  display: block;
  max-width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: var(--quaternary-color);
}

ul {
  padding: 0;
}

ul li {
  font-variant-numeric: tabular-nums;
  list-style: none;
  margin-bottom: .5em;
  padding: 0;
}
