*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.base__main-content {
  flex: 1;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans";
  line-height: 1.6;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(10, 11, 15, 0.45) 0%, rgba(10, 11, 15, 0.45) 100%),
    var(--bg-image) center/cover no-repeat fixed,
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.base__wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-left: max(var(--wrap-pad), env(safe-area-inset-left));
  padding-right: max(var(--wrap-pad), env(safe-area-inset-right));
  position: relative;
  z-index: 1;
}

.base__wrap.base__wrap--wide {
  max-width: var(--container-wide);
}

.base__wrap.base__wrap--narrow {
  max-width: 860px;
}

.base__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

