@font-face {
  font-family: 'ABCDiatypeRoundedVariable';
  src: url('/fonts/ABCDiatypeRoundedVariable.woff') format('woff-variations'),
    url('/fonts/ABCDiatypeRoundedVariable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'ABCDiatypeRoundedVariable', sans-serif;
  font-weight: 375;
  font-variation-settings: "wght" 375;
}



* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-color: #E0E0E0;
  color: #4A4A4A;
}

.instance {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px;
  gap: 80px;
  height: 100svh;
}

.instance__title {
  margin: 0;
  padding: 0;
  letter-spacing: -0.02em;
}

.instance__logo {
  height: 22px;
  width: auto;
}

.instance__main {
  flex: 1;
  font-size: 16px;
  line-height: 115%;
  font-weight: 375;
  font-variation-settings: "wght" 375;
}

.instance__footer .instance__footer-menu {
  display: flex;
  align-items: center;
  column-gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  font-size: 15px;
  letter-spacing: -0.01em;
}

a, a:visited {
  color: #4A4A4A;
  text-decoration: none;
}

@media (max-width: 800px) {
  .instance {
    padding: 50px 30px 30px 30px;
    gap: 40px;
  }

  .instance__title {
    font-size: 18px;
  }

  .instance__logo {
    height: 16px;
  }

  a {
    font-size: 14px;
  }

  .instance__footer .instance__footer-menu {
    column-gap: 14px;
    row-gap: 6px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}