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

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  background: #fff;
}

body {
  background: #ffffff;
  color: #452f24;
  font-family: var(--font-site);
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  max-width: 100%;
}

img {
  pointer-events: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

a,
button {
  pointer-events: auto;
}

.main {
  flex: 1 0 auto;
  width: 100%;
}

.page {
  width: 92.5%;
  max-width: 450px;
  margin: 0 auto;
  padding: 0;
}

@media (min-width: 768px) {
  .page {
    max-width: 760px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
