:root {
  --color-black: #000;
  --color-white: #fff;
  --color-blue-1: #101010;
  --color-main-1: #1ed760;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
*,
::after,
::before {
  box-sizing: inherit;
}
body {
  position: relative;
  min-width: 320px;
  margin: 0;
  color: var(--color-white);
  font-family: Inter, -apple-system, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--color-blue-1);
}
main {
  display: block;
}
h1 {
  margin: 0.67em 0;
}
img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}
img {
  border-style: none;
}
a {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
  color: var(--color-white);
  background-color: transparent;
}
b,
strong {
  font-weight: bolder;
}
[hidden] {
  display: none;
}
@media (max-width: 1024px) {
  body {
    font-size: 14px;
    line-height: 22px;
  }
}
