@font-face {
  font-family: Inter-SemiBold;
  src: url(./font/Inter-SemiBold.otf);
}

@font-face {
  font-family: Inter-Regular;
  src: url(./font/Inter-Regular.otf);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  font-weight: normal;
}

body {
  min-height: 100vh;
  color: var(--color-text);
  background: var(--color-background-soft);
  transition: color 0.5s, background-color 0.5s;
  font-family: Inter-Regular, Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
}

img,
svg,
span {
  vertical-align: middle;
}

a {
  text-decoration: none;
}

.mt-8 {
  margin-top: 8px;
}

.mr-12 {
  margin-right: 12px;
}

.relative {
  position: relative;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-block;
  background: #37373d;
  border-radius: 24px;
  color: #fff;
  margin-top: 36px;
  padding: 12px 24px;
  font: 500 20px/24px Inter-SemiBold;
}

nav {
  padding: 6px;
}

section {
  min-height: calc(100vh - 140px);
  max-width: 1032px;
  margin: 0 auto;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  font: 400 48px/56px Inter-Regular;
}

footer {
  text-align: center;
  color: #7d7d85;
}

footer a {
  color: #7d7d85;
}

footer .relative {
  padding-left: 24px;
  margin-right: 12px;
}

footer .relative::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 12px;
  width: 1px;
  height: 12px;
  background: #eeeef0;
}