@import url('https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --clr-white: #fff;
  --clr-black: #000;
  --clr-blue: #0078FF;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Istok Web", sans-serif;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  overflow-y: scroll;
  scrollbar-width: none;
}

html,
body {
  width: 100%;
  overflow-x: auto;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--clr-white);
}

html::-webkit-scrollbar {
  display: none;
}

a {
  color: var(--clr-black);
  text-align: center;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

image {
  object-fit: contain;
}

button {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: center;
}

.container {
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 7rem;
  max-width: 1600px;
}