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

html {
  scroll-behavior: smooth !important;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.5;
  background: var(--light-color);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: white;
}
::-webkit-scrollbar-thumb {
  background-color: #b80924;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #fa163f;
}

a {
  color: var(--dark-color);
  text-decoration: none;
}

ul {
  /*list-style: none;*/
  font-family: var(--ff-noto);
}

ol {
  font-family: var(--ff-noto);
}

ul li{
  font-family: var(--ff-noto);
}

ol li{
  font-family: var(--ff-noto);
}

img {
  width: 100%;
}

::selection {
  background: var(--primary-color);
  color: #fff;
}
