html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
strong,
b {
  font-weight: 700;
}
a {
  color: #1976d2;
  text-decoration: none;
}
a:hover {
  color: #1565c0;
  text-decoration: underline;
}
a:active,
a:focus-visible {
  outline-offset: 2px;
  outline: 3px dotted rgba(0, 0, 0, 0.87);
}
body {
  margin: 0;
  color: rgba(0, 0, 0, 0.87);
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  background-color: white;
  min-width: 320px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  transition: background-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 600px) {
  .container {
    padding-left: 5%;
    padding-right: 5%;
    max-width: calc(1600px + 10%);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 60px;
  min-width: 320px;
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  transition: background-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.logo > img {
  display: block;
}
.main {
  margin-top: 61px;
  flex: 1 1 auto;
}
.build-tip {
  margin: 40px 0 80px;
}
.build-tip .image {
  display: flex;
  justify-content: center;
}
.build-tip .title {
  margin: 30px 0 20px;
  text-align: center;
}
.build-tip .description {
  text-align: center;
}
.footer {
  flex: 0 0 auto;
  padding: 32px 0;
  background: rgba(0, 0, 0, 0.06);
  transition: background-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer .footer-bottom-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .footer .footer-bottom-wrapper {
    flex-direction: row;
  }
}
.footer-feature {
  display: flex;
  gap: 32px;
}
.language {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
.footer-bottom-wrapper .footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  background-color: transparent;
}
@media screen and (min-width: 600px) {
  .footer-bottom-wrapper .footer-links {
    flex: 1 1 auto;
    flex-direction: row;
    gap: 8px 32px;
  }
}
.footer .footer-bottom-wrapper .footer-links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (min-width: 600px) {
  .footer .footer-bottom-wrapper .footer-links > div {
    gap: 0 32px;
    justify-content: flex-end;
  }
}
.footer .footer-bottom-wrapper .footer-links > div > a,
.footer .footer-bottom-wrapper .footer-links > div > span {
  font-size: 12px;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
}

@media screen and (min-width: 600px) {
  .footer .footer-bottom-wrapper .footer-links > div > a,
  .footer .footer-bottom-wrapper .footer-links > div > span {
    text-align: right;
    font-size: 12px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
  }
}
