:root{
    --main-blue: #007CBA;
    --main-white: #FFF;
    --main-black: #000;
    --card-gray: #1D1D1D;
}
*{
    margin: 0;
    padding: 0;
}
/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
}
button{
    background-color: transparent;
    border: none;
    cursor: pointer;
}
a{
    cursor: pointer;
    text-decoration: none;
}

ul[class],
ol[class] {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.noscroll{
  overflow: hidden;
}