:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1;
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}

html {
  box-sizing: border-box;
  line-height: 1.15;
  scroll-behavior: smooth;
  cursor:  url('/img/cur/x.svg'), auto;
}


body {
  background-color: #1e1e1e;
  color: #28BD75;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin: 0;
  overflow-x: hidden;

  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  color: #28BD75;
}

.x {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* origin
.logos {
  max-width: 400px;
  margin-bottom: 24px;
  cursor:  url('/img/cur/q.svg'), auto;
}
  */

.h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

h1 .logos {
  height: 1em;
  width: auto;
  vertical-align: middle;
  font-size: 19px;
  cursor:  url('/img/cur/q.svg'), auto;
}

.txt {
  width: min(550px, 100%);
}

@media (min-width: 769px) {
  .txt {
    transform: translateX(16px);
  }
}

.txt h1 {
  text-align: left;
}

.txt p {

  text-align-last: left;
  line-height: 1.4;

  margin: 0;
  margin-bottom: 16px;

  hyphens: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
  cursor: text;
}

.futs {
  
  line-height: 1.2;
  position: fixed;
  bottom: 40px;
  left: 40px;
/*  line-height: 1.4; */
}

.futs a:hover {
  text-decoration: underline;
}


@custom-media --small-viewport (min-width: 481px);
@custom-media --medium-viewport (min-width: 764px);
@custom-media --large-viewport (min-width: 1024px);